graphql-engine/server/tests-py/queries/actions/sync/schema_teardown.yaml
hasura-bot 513a3d0c19 Fix action relationship type and input arguments (closes #6402) (#284)
Co-authored-by: Antoine Leblanc <antoine@hasura.io>
GITHUB_PR_NUMBER: 6417
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/6417
GitOrigin-RevId: 37b67a4d04e0ed3b16fc5fc9bf025b24b1f1bf6e
2021-01-18 06:57:24 +00:00

33 lines
545 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: get_user_by_email
clear_data: true
- type: drop_action
args:
name: get_users_by_email
clear_data: true
# clear custom types
- type: set_custom_types
args: {}
- type: run_sql
args:
cascade: true
sql: |
DROP TABLE "user";
DROP TABLE "article";