mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 05:21:47 +03:00
23 lines
409 B
YAML
23 lines
409 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
|