mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-21 14:31:55 +03:00
32 lines
636 B
YAML
32 lines
636 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
#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 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
|