mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
5bc0355bdd
GitOrigin-RevId: abd7303aaf8e7a8739fd10574249aec450082ef8
59 lines
1.1 KiB
YAML
59 lines
1.1 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
|
|
- name: Author 4
|
|
payments_done: true
|
|
- name: Author 5
|
|
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) ;
|
|
|