graphql-engine/server/tests-py/queries/graphql_mutation/insert/views/schema_teardown.yaml
kodiakhq[bot] a935746e17 Integration test improvements (for speed/clarity), also increase polling interval for scheduled events
This claws back ~7min from integration tests (run serially, as with `dev.sh test --integration`
Further improvements would do well to focus on optimizing metadata operations, as `setup` dominates

GitOrigin-RevId: 76637d6fa953c2404627c4391447a05bf09355fa
2021-04-27 05:35:26 +00:00

28 lines
450 B
YAML

type: bulk
args:
#Drop relationships
- type: drop_relationship
args:
relationship: author_simple
table:
schema: public
name: article
- type: drop_relationship
args:
relationship: author_complex
table:
schema: public
name: article
#Drop views and tables
- type: run_sql
args:
sql: |
drop view author_simple;
drop view author_complex;
drop table article;
drop table author;