graphql-engine/server/tests-py/queries/actions/sync/schema_teardown.yaml
hasura-bot 22120a026c don't drop nested typed null fields in actions (fix #8237)
GITHUB_PR_NUMBER: 8238
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8238

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4272
Co-authored-by: Jesse Jaara <294363+Huulivoide@users.noreply.github.com>
Co-authored-by: Lyndon Maydwell <92299+sordina@users.noreply.github.com>
GitOrigin-RevId: 810ec935a1e1c75a06a1ad1427dedb179eb60d5e
2022-04-18 09:59:16 +00:00

93 lines
1.7 KiB
YAML

type: bulk
args:
- type: drop_action
args:
name: create_user
clear_data: true
- type: drop_action
args:
name: create_users
clear_data: true
- type: drop_action
args:
name: mirror
clear_data: true
- type: drop_action
args:
name: mirror_transformed
clear_data: true
- type: drop_action
args:
name: mirror_transformed_output
clear_data: true
- type: drop_action
args:
name: mirror_headers
clear_data: true
- type: drop_action
args:
name: get_user_by_email
clear_data: true
- type: drop_action
args:
name: get_user_by_email_nested
clear_data: true
- type: drop_action
args:
name: get_user_by_email_nested_transformed
clear_data: true
- type: drop_action
args:
name: get_users_by_email
clear_data: true
- type: drop_action
args:
name: get_users_by_email_nested
clear_data: true
- type: drop_action
args:
name: get_user_by_email_nested_join
clear_data: true
- type: drop_action
args:
name: intentional_error
clear_data: true
- type: drop_action
args:
name: null_response
clear_data: true
- type: drop_action
args:
name: scalar_response
clear_data: true
- type: drop_action
args:
name: recursive_output
clear_data: true
- type: drop_action
args:
name: result_list
clear_data: true
- type: drop_action
args:
name: results
clear_data: true
- type: drop_action
args:
name: typed_nested_null
clear_data: true
- type: drop_action
args:
name: typed_nested_null_wrong_field
clear_data: true
# clear custom types
- type: set_custom_types
args: {}
- type: run_sql
args:
cascade: true
sql: |
DROP TABLE "user";
DROP TABLE "article";