You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Golang's library for registration data source in Hasura service
4
+
5
+
## Configuration
6
+
7
+
```yaml
8
+
hasura:
9
+
url: string # hasura url, required
10
+
admin_secret: string # required
11
+
select_limit: int
12
+
allow_aggregation: bool
13
+
source:
14
+
name: string # name of data source, required. For more info, [hasura docs](https://hasura.io/docs/latest/api-reference/metadata-api/source/#metadata-pg-add-source-syntax).
15
+
database_host: string # host of datasource, if omitted, used host from database config
16
+
use_prepared_statements: bool # if set to true the server prepares statement before executing on the source database (default: false)
17
+
isolation_level: bool # The transaction isolation level in which the queries made to the source will be run with (options: read-committed | repeatable-read | serializable) (default: read-committed)
0 commit comments