mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
24 lines
410 B
YAML
24 lines
410 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
|
||
|
title: Article 1
|
||
|
- content: Sample article content
|
||
|
title: Article 2
|
||
|
- content: Sample article content
|
||
|
title: Article 3
|
||
|
|