Skip to content

Commit 1910218

Browse files
committed
Remove upper limits for Hasura
1 parent 574cc6c commit 1910218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ type Database struct {
5252
type Hasura struct {
5353
URL string `yaml:"url" validate:"required,url"`
5454
Secret string `yaml:"admin_secret" validate:"required"`
55-
RowsLimit uint64 `yaml:"select_limit" validate:"gt=0,lt=1000"`
55+
RowsLimit uint64 `yaml:"select_limit" validate:"gt=0"`
5656
EnableAggregations bool `yaml:"allow_aggregation"`
5757
Rest *bool `yaml:"rest"`
5858
}

0 commit comments

Comments
 (0)