-
Hi,
it seems that Hasura doesn't generate the graphql type `ID` (https://graphql.github.io/graphql-spec/June2018/#sec-ID) for primary keys. Instead it generates a scalar type matching the type of t…
-
In the graphql-relay-js library they have a function to declare a GlobalID for a type.
export function globalIdField(
typeName?: ?string,
idFetcher?: (object: any, info: GraphQLResolveInfo) => st…
-
**Is your feature request related to a problem? Please describe.**
Currently scalar field on input types use the same types as scalars on normal types. It would be really useful to be able to use …
hayes updated
2 years ago
-
Given the following query:
```qraphql
query tree($parent: Int!) {
systemTree(parent: $parent) {
...fields
}
}
```
using this config:
```yml
overwrite: true
schema: "sc…
-
HI,
I want to use a struct with lots of field members as a GraphQL object from other crate.
After reading the doc, I know that using `scalar!` and create a wrapper type can solve this problem.
How…
-
When `elm-graphql` generates a GraphQL query which contains a scalar field, that field is aliased using a unique hash (as discussed in #95). This means that if the same field is requested twice (e.g. …
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Current Behavior
I am using `graphiql` with `spring-boot-graphql-starter`, however I am getting an error even …
-
I like your idea to fallback to default data given the type.
I would also propose:
- Ability to configure resolved data given a `GraphQL scalar Type`: `Int`, `String`, etc
- Ability to configure …
-
**Is your feature request related to a problem? Please describe.**
Custom scalars require marshal and unmarshal functions to tell genqlient how they work.
I already have marshal and unmarshal func…
-
I have an ID that's been generated using [Go's Hash32 func](https://golang.org/pkg/hash/#Hash32)
I ran into an issue using the Int type in my schema discovered that [uint32 is not supported as Int…