mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 21:41:44 +03:00
51 lines
950 B
YAML
51 lines
950 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
#Author table
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
create table author(
|
||
|
id serial primary key,
|
||
|
name text unique,
|
||
|
is_registered boolean not null default false
|
||
|
);
|
||
|
- 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 REFERENCES author(id),
|
||
|
is_published BOOLEAN,
|
||
|
published_on TIMESTAMP
|
||
|
)
|
||
|
- type: track_table
|
||
|
args:
|
||
|
schema: public
|
||
|
name: article
|
||
|
|
||
|
#Create relationships
|
||
|
- type: create_object_relationship
|
||
|
args:
|
||
|
table: article
|
||
|
name: author
|
||
|
using:
|
||
|
foreign_key_constraint_on: author_id
|
||
|
|
||
|
- type: create_array_relationship
|
||
|
args:
|
||
|
table: author
|
||
|
name: articles
|
||
|
using:
|
||
|
foreign_key_constraint_on:
|
||
|
table: article
|
||
|
column: author_id
|