mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
80 lines
1.5 KiB
YAML
80 lines
1.5 KiB
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
#Author table
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
create table author(
|
||
|
id serial primary key,
|
||
|
name text unique
|
||
|
);
|
||
|
- type: track_table
|
||
|
args:
|
||
|
schema: public
|
||
|
name: author
|
||
|
|
||
|
#Article table
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
CREATE TABLE article (
|
||
|
id SERIAL PRIMARY KEY,
|
||
|
title TEXT,
|
||
|
content TEXT,
|
||
|
author_id INTEGER NOT NULL REFERENCES author(id),
|
||
|
is_published BOOLEAN,
|
||
|
published_on TIMESTAMP
|
||
|
)
|
||
|
- type: track_table
|
||
|
args:
|
||
|
schema: public
|
||
|
name: article
|
||
|
|
||
|
#Object relationship
|
||
|
- type: create_object_relationship
|
||
|
args:
|
||
|
table: article
|
||
|
name: author
|
||
|
using:
|
||
|
foreign_key_constraint_on: author_id
|
||
|
|
||
|
#Array relationship
|
||
|
- type: create_array_relationship
|
||
|
args:
|
||
|
table: author
|
||
|
name: articles
|
||
|
using:
|
||
|
foreign_key_constraint_on:
|
||
|
table: article
|
||
|
column: author_id
|
||
|
|
||
|
#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
|