Skip to content

Commit

Permalink
feat(hasura): update computed field
Browse files Browse the repository at this point in the history
  • Loading branch information
harisato committed Jul 27, 2023
1 parent 62f64ee commit 195870f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-compose-hasura.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
ports:
- '5432:5432'
graphql-engine:
image: hasura/graphql-engine:v2.26.0
image: hasura/graphql-engine:v2.30.0
ports:
- '8080:8080'
restart: always
Expand Down
10 changes: 7 additions & 3 deletions hasura/metadata/databases/punkga-pg/tables/public_manga.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,22 @@ select_permissions:
- release_date
- status
- updated_at
computed_fields:
- latest_published
filter: {}
allow_aggregations: true
- role: user
permission:
columns:
- banner
- created_at
- id
- poster
- publish_date
- banner
- release_date
- status
- created_at
- updated_at
- publish_date
computed_fields:
- latest_published
filter: {}
allow_aggregations: true

0 comments on commit 195870f

Please sign in to comment.