mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-20 22:11:45 +03:00
38 lines
639 B
YAML
38 lines
639 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
#Insert residents
|
||
|
- type: insert
|
||
|
args:
|
||
|
table: resident
|
||
|
objects:
|
||
|
- id: 1
|
||
|
name: Resident 1
|
||
|
age: 21
|
||
|
- id: 2
|
||
|
name: Resident 2
|
||
|
age: 22
|
||
|
|
||
|
#Insert Author table data
|
||
|
- type: insert
|
||
|
args:
|
||
|
table: author
|
||
|
objects:
|
||
|
- name: Author 1
|
||
|
- name: Author 2
|
||
|
|
||
|
#Insert aticle table data
|
||
|
- type: insert
|
||
|
args:
|
||
|
table: article
|
||
|
objects:
|
||
|
- content: Sample article content
|
||
|
title: Article 1
|
||
|
author_id: 1
|
||
|
- content: Sample article content
|
||
|
title: Article 2
|
||
|
author_id: 1
|
||
|
- content: Sample article content
|
||
|
title: Article 3
|
||
|
author_id: 2
|