graphql-engine/server/tests-py/queries/graphql_query/functions/teardown.yaml

21 lines
317 B
YAML

type: bulk
args:
#Drop function first
- type: untrack_function
args:
name: search_posts
schema: public
- type: untrack_table
args:
table:
schema: public
name: post
#Drop table and function from postgres
- type: run_sql
args:
sql: |
drop table post cascade;
cascade: true