mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 05:21:47 +03:00
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
type: bulk
|
|
args:
|
|
|
|
- type: insert
|
|
args:
|
|
table: resident
|
|
objects:
|
|
- name: Griffin
|
|
age: 25
|
|
- name: Clarke
|
|
age: 26
|
|
|
|
#Insert Author table data
|
|
- type: insert
|
|
args:
|
|
table: author
|
|
objects:
|
|
- name: Author 1
|
|
- name: Author 2
|
|
- name: Author 3
|
|
payments_done: true
|
|
|
|
#Insert aticle table data
|
|
- type: insert
|
|
args:
|
|
table: article
|
|
objects:
|
|
- content: Sample article content 1
|
|
title: Article 1
|
|
author_id: 1
|
|
- content: Sample article content 2
|
|
title: Article 2
|
|
author_id: 1
|
|
- content: Sample article content 3
|
|
author_id: 1
|
|
title: Article 3
|
|
- content: Sample article content 4
|
|
author_id: 2
|
|
title: Article 4
|
|
- content: Sample article content 5
|
|
author_id: 2
|
|
title: Article 5
|
|
|
|
#Insert users and accounts
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
insert into "user" (name, is_admin)
|
|
values ('user_1', false), ('user_2', true)
|
|
;
|
|
insert into account (account_no) values (1), (2) ;
|