mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
41 lines
727 B
YAML
41 lines
727 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
- type: mssql_track_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
schema: hge_tests
|
||
|
name: test_t1
|
||
|
|
||
|
- type: mssql_create_event_trigger
|
||
|
args: &def_args
|
||
|
source: mssql
|
||
|
name: t1_enabled
|
||
|
table:
|
||
|
schema: hge_tests
|
||
|
name: test_t1
|
||
|
insert:
|
||
|
columns: '*'
|
||
|
update:
|
||
|
columns: '*'
|
||
|
delete:
|
||
|
columns: '*'
|
||
|
enable_manual: true
|
||
|
webhook: http://127.0.0.1:5592
|
||
|
|
||
|
- type: mssql_create_event_trigger
|
||
|
args: &def_args1
|
||
|
source: mssql
|
||
|
name: t1_disabled
|
||
|
table:
|
||
|
schema: hge_tests
|
||
|
name: test_t1
|
||
|
insert:
|
||
|
columns: '*'
|
||
|
update:
|
||
|
columns: '*'
|
||
|
delete:
|
||
|
columns: '*'
|
||
|
enable_manual: false
|
||
|
webhook: http://127.0.0.1:5592
|