graphql-engine/server/tests-py/queries/graphql_query/boolexp/search/setup_mssql.yaml
Abby Sassel 6436ac06e0 server/mssql: support N/IN and N/LIKE operators
GitOrigin-RevId: 6f897b384a4469425d46b1bedf015ecbd1600fcc
2021-03-19 12:43:14 +00:00

43 lines
691 B
YAML

type: bulk
args:
- type: mssql_track_table
args:
source: mssql
table:
name: author
#Article table
- type: mssql_track_table
args:
source: mssql
table:
name: article
#Article table
- type: mssql_track_table
args:
source: mssql
table:
name: city
#Object relationship
- type: mssql_create_object_relationship
args:
source: mssql
table: article
name: author
using:
foreign_key_constraint_on: author_id
#Array relationship
- type: mssql_create_array_relationship
args:
source: mssql
table: author
name: articles
using:
foreign_key_constraint_on:
table: article
column: author_id