graphql-engine/server/tests-py/queries/graphql_query/order_by/setup.yaml
Rakesh Emmadi f6ed169219 allow ordering using columns from object relationships (closes #463) (#672)
* allow ordering using columns from object relationships, close #463

* validate table fields in nested insert

* add tests

* add docs

* change 'table_order_by' type from enums to ordered map

* remove unwanted code from 'Schema.hs' file

* 'AnnGObject' is not list of field name and value tuple

* update docs for new order_by type

* use 'InsOrdHashMap' for 'AnnGObj'

* handle empty fields in order_by

* remove '_' prefixes for asc/desc

* fix the changed order_by syntax across the repo
2018-10-26 17:27:33 +05:30

114 lines
2.0 KiB
YAML

type: bulk
args:
#Contact table
- type: run_sql
args:
sql: |
CREATE TABLE contact (
id SERIAL PRIMARY KEY,
phone INTEGER,
address TEXT
)
- type: track_table
args:
schema: public
name: contact
#Author table
- type: run_sql
args:
sql: |
create table author(
id serial primary key,
name text unique,
contact_id INTEGER REFERENCES contact(id)
);
- 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
#Object relationship
- type: create_object_relationship
args:
table: author
name: contact
using:
foreign_key_constraint_on: contact_id
- 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 values
- type: run_sql
args:
sql: |
insert into contact (phone)
values
(1234567890),
(1234567891)
- type: run_sql
args:
sql: |
insert into author (name, contact_id)
values
('Author 1', 2),
('Author 2', 1)
- type: run_sql
args:
sql: |
insert into article (title,content,author_id,is_published)
values
(
'Article 1',
'Sample article content 1',
1,
false
),
(
'Article 2',
'Sample article content 2',
1,
true
),
(
'Article 3',
'Sample article content 3',
2,
true
)