graphql-engine/server/tests-py/queries/actions/sync/schema_teardown.yaml
paritosh-08 40678855d0 server: add support for nested object type in action
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2788
Co-authored-by: David Overton <7734777+dmoverton@users.noreply.github.com>
GitOrigin-RevId: f8ed9741e95b6864a48af7db338f3f619617483a
2021-12-15 23:52:43 +00:00

57 lines
1018 B
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: 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_users_by_email
clear_data: true
- type: drop_action
args:
name: get_users_by_email_nested
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: recursive_output
clear_data: true
# clear custom types
- type: set_custom_types
args: {}
- type: run_sql
args:
cascade: true
sql: |
DROP TABLE "user";
DROP TABLE "article";