graphql-engine/server/tests-py/queries/graphql_mutation/insert/permissions/schema_teardown.yaml
Karthikeyan Chinnakonda 58cf521c62 server: support relationship column comparison with root table columns
GitOrigin-RevId: 9d9bcb82a997c1f060df5ba0726c29d934e70d71
2021-04-19 12:17:07 +00:00

28 lines
567 B
YAML

type: bulk
args:
#Drop relationship first
- type: drop_relationship
args:
table:
name: author
schema: public
relationship: articles
- type: run_sql
args:
sql: |
drop table address;
drop table resident;
drop function fetch_articles(text,author);
drop table article;
drop table blog;
drop table author;
drop table "Company";
drop table computer;
drop table "user";
drop table account;
drop table leads;
drop table order_cart;
drop table items;
cascade: true