mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
30 lines
530 B
YAML
30 lines
530 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
|
|
|
|
#Insert into orders
|
|
- type: insert
|
|
args:
|
|
table: orders
|
|
objects:
|
|
- placed: '2017-08-19 14:22:11.802755+02'
|