mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
101 lines
1.5 KiB
YAML
101 lines
1.5 KiB
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
# Track tables
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: author
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: article
|
||
|
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: city
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: orders
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: message
|
||
|
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: uuid_test
|
||
|
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: user
|
||
|
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: account
|
||
|
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: table_with_sql_identifier
|
||
|
|
||
|
#Object relationships
|
||
|
- type: mssql_create_object_relationship
|
||
|
args:
|
||
|
source: mssql
|
||
|
table: article
|
||
|
name: author
|
||
|
using:
|
||
|
foreign_key_constraint_on: author_id
|
||
|
|
||
|
- type: mssql_create_object_relationship
|
||
|
args:
|
||
|
source: mssql
|
||
|
table: message
|
||
|
name: parent
|
||
|
using:
|
||
|
foreign_key_constraint_on: parent_id
|
||
|
|
||
|
#Array relationships
|
||
|
- type: mssql_create_array_relationship
|
||
|
args:
|
||
|
source: mssql
|
||
|
table: author
|
||
|
name: articles
|
||
|
using:
|
||
|
foreign_key_constraint_on:
|
||
|
table: article
|
||
|
column: author_id
|
||
|
|
||
|
- type: mssql_create_array_relationship
|
||
|
args:
|
||
|
source: mssql
|
||
|
table: message
|
||
|
name: children
|
||
|
using:
|
||
|
foreign_key_constraint_on:
|
||
|
table: message
|
||
|
column: parent_id
|