mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
a509a86eaa
* implement internal graphql server for remote schema tests * add one more graphql endpoint and more tests * add missing dependency
24 lines
400 B
YAML
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
|