graphql-engine/server/tests-py/queries/subscriptions/customized_source/schema_setup.yaml
David Overton aac64f2c81 Source typename customization (close graphql-engine#6974)
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/1616
GitOrigin-RevId: f7eefd2367929209aa77895ea585e96a99a78d47
2021-10-29 14:43:14 +00:00

11 lines
202 B
YAML

type: run_sql
args:
source: pg1
sql: |
create table author(
id serial primary key,
name text unique
);
INSERT INTO author (name)
VALUES ('Author 1'), ('Author 2');