mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
24 lines
404 B
YAML
24 lines
404 B
YAML
|
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
|