All checks were successful
/ build (map[dockerfile:./services/hasura/Dockerfile name:hasura]) (push) Successful in 47s
/ build (map[dockerfile:./services/web/Dockerfile name:web]) (push) Successful in 1m47s
/ build (map[dockerfile:./services/watchers/Dockerfile name:watchers]) (push) Successful in 2m37s
/ build (map[dockerfile:./services/files/Dockerfile name:files]) (push) Successful in 2m52s
/ build (map[dockerfile:./services/api/Dockerfile name:api]) (push) Successful in 3m2s
/ build (map[dockerfile:./services/app/Dockerfile name:app]) (push) Successful in 31s
/ build (map[dockerfile:./services/tasks/Dockerfile name:tasks]) (push) Successful in 2m44s
/ deploy (push) Successful in 48s
58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
table:
|
|
name: notification
|
|
schema: public
|
|
configuration:
|
|
column_config:
|
|
created_at:
|
|
custom_name: createdAt
|
|
user_id:
|
|
custom_name: userId
|
|
custom_column_names:
|
|
created_at: createdAt
|
|
user_id: userId
|
|
custom_root_fields:
|
|
delete: deleteManyNotification
|
|
delete_by_pk: deleteOneNotification
|
|
insert: insertManyNotification
|
|
insert_one: insertOneNotification
|
|
select: selectManyNotification
|
|
select_aggregate: selectAggNotification
|
|
select_by_pk: selectOneNotification
|
|
select_stream: selectStreamNotification
|
|
update: updateManyNotification
|
|
update_by_pk: updateOneNotification
|
|
update_many: updateBatchNotification
|
|
select_permissions:
|
|
- role: owner
|
|
permission:
|
|
columns:
|
|
- acknowledged
|
|
- created_at
|
|
- data
|
|
- id
|
|
- message
|
|
- type
|
|
- user_id
|
|
filter:
|
|
user_id:
|
|
_eq: X-Hasura-User-Id
|
|
limit: 20
|
|
allow_aggregations: true
|
|
comment: ""
|
|
update_permissions:
|
|
- role: owner
|
|
permission:
|
|
columns:
|
|
- acknowledged
|
|
filter:
|
|
user_id:
|
|
_eq: X-Hasura-User-Id
|
|
check: null
|
|
comment: ""
|
|
delete_permissions:
|
|
- role: owner
|
|
permission:
|
|
filter:
|
|
user_id:
|
|
_eq: X-Hasura-User-Id
|
|
comment: ""
|