graphql-crystal
graphql-crystal copied to clipboard
a graphql implementation for crystal
Hey, I was going through the lib trying to understand it. I noticed there was a lot of methods that checked types and did something based on the result. I...
We already have `add_input_types` to the schema which allows us to use structs to define inputs. Can we possibly do this for all other things? Such as types, interfaces &...
At some point, I realized I was using a pretty outdated version of this lib. The type conversion from `JSON::Any` didn't work for me but I saw [an example](https://github.com/ziprandom/kemal-graphql-example/blob/master/src/kemal-graphql.cr#L30) where...
Can we declare schema in one place? Your kemal example has schema_string and type declaration: ``` # A User type User implements UniqueId { # users first name firstName: String!...
It appears that even though GraphQL supports case-sensitivity, creating fields with first letter uppercase does not work here because it generates invalid function names: ``` field :Dir do ... end...
I use https://github.com/skevy/graphiql-app request with params ``` query IntrospectionQuery { __schema { queryType { name } mutationType { name } subscriptionType { name } types { ...FullType } directives {...
Hi, im using your shard in a private project and so far it works great (errors in fields are little difficult to track down though). A thing that is a...
Hello. Maybe i missed it in the documentation, is there a way to customise error adding fields?