mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +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);
|
||
|
|