mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 05:21:47 +03:00
13 lines
205 B
YAML
13 lines
205 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
|
||
|
delete from article;
|
||
|
SELECT setval('article_id_seq', 1, FALSE);
|
||
|
|
||
|
delete from author;
|
||
|
SELECT setval('author_id_seq', 1, FALSE);
|