graphql
graphql copied to clipboard
GraphQL Elixir
Does this gets any update ? any new alternative ?
Small nit: noticed a missing space while reading through the source.
Hey there, Just looking through I can see that I can parse the AST with GraphProxy.Query, I just wondered if there was any way to recreate that query back from...
Distillery ([issue](https://github.com/bitwalker/distillery/issues/39)) is unable to archive a Phoenix app using `graphql` because some of the `graphql` `.beam` files' names exceed the 100 character limited imposed by `erl_tar` ([source](https://github.com/erlang/otp/blob/maint/lib/stdlib/src/erl_tar.erl#L266)). I was...
Currently if a non-null field is no specified in the mutation, the mutation will still execute even though it should return an error. http://facebook.github.io/graphql/#sec-Non-Null GraphiQL will indicate that the query...
At the moment, the `fields` key in `%GraphQL.Type.ObjectType{}` and `args` key only take a map with atom keys. For example: ``` iex %GraphQL.Schema{ query: %GraphQL.Type.ObjectType{ name: "RootQueryType", fields: %{ greeting:...
Ideally i do not want to select all the columns of my users table, if the client only want to access the name of a user. Is there any way...
As reported by @puruzio on Slack. The stacktrace from this error makes it very hard to pin down where the error is occurring in the schema. Ideally this error should...
Does the core support mapping from the Ecto field, `first_name`, to the GraphQL field, `firstName`? I have played with Ruby GraphQL server and it seems that there's a `property` attribute...
Hey there, I came across this problem while attempting to issue this mutation via GraphiQL: ``` mutation M { upsertSpread(input: { user_id: 1 }) { id description } } ```...