graphql-engine/server/tests-py/queries/remote_schemas/tbls_setup.yaml
Anon Ray a509a86eaa implement internal graphql server for remote schema tests (#1117)
* implement internal graphql server for remote schema tests

* add one more graphql endpoint and more tests

* add missing dependency
2018-11-26 18:38:16 +05:30

24 lines
400 B
YAML

type: bulk
args:
- type: run_sql
args:
sql: |
CREATE TABLE hello (
id SERIAL PRIMARY KEY,
code TEXT,
name TEXT
);
- type: track_table
args:
schema: public
name: hello
- type: add_remote_schema
args:
name: simple2-graphql
comment: testing
definition:
url: http://localhost:5000/user-graphql
forward_client_headers: false