mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
44 lines
905 B
YAML
44 lines
905 B
YAML
type: bulk
|
|
args:
|
|
|
|
#Insert Author table data
|
|
- type: insert
|
|
args:
|
|
table: author
|
|
objects:
|
|
- name: Author 1
|
|
- name: Author 2
|
|
- name: Author 3
|
|
info:
|
|
age: 23
|
|
location:
|
|
type: Point
|
|
crs:
|
|
type: name
|
|
properties:
|
|
name: urn:ogc:def:crs:EPSG::4326
|
|
coordinates:
|
|
- -118.4079
|
|
- 33.9434
|
|
|
|
#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
|