graphql-engine/server/tests-py/queries/graphql_mutation/insert/nested/schema_setup.yaml
Vladimir Ciobanu d5ff1acf2d better handling for one-to-one relationships
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 1bb5bc0c4ac8109ee1d20563d23cf98e0906a483
2021-03-03 13:02:59 +00:00

103 lines
2.1 KiB
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,
emails text[] not null default '{}'::text[]
);
CREATE TABLE article (
id SERIAL PRIMARY KEY,
title TEXT,
content TEXT,
author_id INTEGER REFERENCES author(id),
is_published BOOLEAN,
published_on TIMESTAMP,
tags JSON
);
create table author_detail(
id integer primary key references author(id),
phone text
);
CREATE FUNCTION fetch_articles(search text, author_row author)
RETURNS SETOF article AS $$
SELECT *
FROM article
WHERE
( title ilike ('%' || search || '%')
OR content ilike ('%' || search || '%')
) AND author_id = author_row.id
$$ LANGUAGE sql STABLE;
- type: track_table
args:
schema: public
name: author
#Article table
- type: track_table
args:
schema: public
name: article
- type: track_table
args:
schema: public
name: author_detail
#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
# add a computed field
- type: add_computed_field
args:
table: author
name: fetch_articles
definition:
function: fetch_articles
table_argument: author_row
#Create relationships
- type: create_object_relationship
args:
table: author
name: detail_manual
using:
manual_configuration:
remote_table:
name: author_detail
schema: public
column_mapping:
id: id
insertion_order: after_parent
- type: create_object_relationship
args:
table: author
name: detail_fk
using:
foreign_key_constraint_on:
table: author_detail
column: id