Toan Nguyen
Toan Nguyen
Hi @wangmir , This library only supports JSON content type. I have no idea if there is another supported graphql client in Go. However, you can use a plain HTTP...
I get your idea. Feel free to make a PR. However, you need to make sure the change doesn't break the current interface and API design.
You can use the Graphiql console to autocomplete the full query. The timestamp column of Postgres is usually `timestamptz` or `timestamp` if no time zone. For example: ```graphql query GetUser($_eq:...
Sorry for the late reply. These are v1.3.3 migrations. Hasura 2.0 migrations and metadata structures are different now (v3 metadata) I will update migrations for Hasura 2.0 soon
Hi, It's impossible for now, but I'll add the solution soon.
```go var query { UserEventSubscription { SchemaID string `graphql:"schema_id"` UserEventSubscriptionSchemaEvent struct { Hostname string `graphql:"hostname"` } `graphql:"user_event_subscription_schema_event"` } `graphql:"user_event_subscription(where: { event_uuid: { _eq: $s }})"` } ```
Hi Najy, It's very helpful if you can provide the mutation example so we can reproduce the issue. From my experience with Hasura graphql engine, instead of passing the scalar...
Hi, Because you can input the raw GraphQL query string directly in `Exec` and `ExecRaw` methods, it doesn't worth manipulating the string to inject the operation name into it. It's...
It depends. You can create a request issue if you know any popular subscription protocol. We will analyze and decide if it's worth to support. Or we can expose the...
Hello @kotyara85, You can try to add `scalar:"true"` tag to that field. The library will ignore inferring nested fields and decode directly. ```go type serviceAccount struct { Name graphql.String Labels...