graphql-engine/server/tests-py/queries/remote_schemas/tbls_setup.yaml

24 lines
404 B
YAML
Raw Normal View History

type: bulk
args:
- type: run_sql
args:
sql: |
CREATE TABLE country (
id SERIAL PRIMARY KEY,
code TEXT,
name TEXT
);
- type: track_table
args:
schema: public
name: country
- type: add_remote_schema
args:
name: bahnql-remote
comment: testing
definition:
url: https://bahnql.herokuapp.com/graphql
forward_client_headers: false