2021-03-11 21:17:41 +03:00
|
|
|
type: bulk
|
|
|
|
args:
|
|
|
|
|
2021-05-25 16:54:18 +03:00
|
|
|
# track tables
|
2021-03-11 21:17:41 +03:00
|
|
|
- type: mssql_track_table
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table:
|
|
|
|
name: test_types
|
|
|
|
|
|
|
|
- type: mssql_track_table
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table:
|
|
|
|
name: author
|
2021-03-16 19:41:21 +03:00
|
|
|
|
|
|
|
- type: mssql_track_table
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table:
|
|
|
|
name: article
|
|
|
|
|
|
|
|
- type: mssql_track_table
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table:
|
|
|
|
name: user
|
|
|
|
|
|
|
|
- type: mssql_track_table
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table:
|
|
|
|
name: person
|
|
|
|
|
2021-05-21 05:46:58 +03:00
|
|
|
- type: mssql_track_table
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table:
|
|
|
|
name: article_multi
|
|
|
|
|
|
|
|
- type: mssql_track_table
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table:
|
|
|
|
name: author_multi
|
|
|
|
|
2021-05-25 16:54:18 +03:00
|
|
|
# create relationships
|
2021-03-16 19:41:21 +03:00
|
|
|
- type: mssql_create_object_relationship
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table: article
|
|
|
|
name: author
|
|
|
|
using:
|
|
|
|
foreign_key_constraint_on: author_id
|
|
|
|
|
2021-03-31 16:48:36 +03:00
|
|
|
- type: mssql_create_object_relationship
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table: article
|
|
|
|
name: co_author
|
|
|
|
using:
|
|
|
|
foreign_key_constraint_on: co_author_id
|
|
|
|
|
2021-03-16 19:41:21 +03:00
|
|
|
- type: mssql_create_array_relationship
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table: author
|
|
|
|
name: articles
|
|
|
|
using:
|
|
|
|
foreign_key_constraint_on:
|
|
|
|
table: article
|
|
|
|
column: author_id
|
2021-03-31 16:48:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
- type: mssql_create_array_relationship
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table: author
|
|
|
|
name: co_articles
|
|
|
|
using:
|
|
|
|
foreign_key_constraint_on:
|
|
|
|
table: article
|
|
|
|
column: co_author_id
|
2021-05-21 05:46:58 +03:00
|
|
|
|
|
|
|
- type: mssql_create_object_relationship
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table: article_multi
|
|
|
|
name: author
|
|
|
|
using:
|
|
|
|
foreign_key_constraint_on: ["author_id1", "author_id2"]
|
|
|
|
|
|
|
|
- type: mssql_create_array_relationship
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table: author_multi
|
|
|
|
name: articles
|
|
|
|
using:
|
|
|
|
foreign_key_constraint_on:
|
|
|
|
table: article_multi
|
|
|
|
columns: ["author_id1", "author_id2"]
|
2021-11-20 12:02:49 +03:00
|
|
|
|
|
|
|
- type: mssql_create_select_permission
|
|
|
|
args:
|
|
|
|
source: mssql
|
|
|
|
table: author
|
|
|
|
role: user
|
|
|
|
permission:
|
|
|
|
columns: "*"
|
|
|
|
filter: {"id":{"_eq":"X-Hasura-User-Id"}}
|