graphql-js icon indicating copy to clipboard operation
graphql-js copied to clipboard

A reference implementation of GraphQL for JavaScript

Results 284 graphql-js issues
Sort by recently updated
recently updated
newest added

We have an application where we regularly respond with object lists of multiple thousand objects. Completing the list containing these objects can take several seconds, during which the event loop...

needs exploration

extracted from #3808 PR #3808 uses schema coordinates to improve GraphQL-JS error messages. To reduce the size of the PR, this commit standardizes error messages according to the general pattern...

PR: bug fix 🐞

extracted from my fragment arguments scratch branch

PR: polish 💅

In trying to prevent infinite loops, https://github.com/graphql/graphql-js/pull/3442 introduced a bug that causes certain violations of the [Field Selection Merging](https://spec.graphql.org/draft/#sec-Field-Selection-Merging) validation to not be caught (released in `16.3.0`, and backported to...

extracted from @leebyron 's excellent #3807 will reduce that diff

PR: bug fix 🐞

depends on #4152 goal: avoid creating or passing around the deferMap methodology: - each `DeferredFragmentRecord` will be unique for a given `DeferUsage` and creation `Path`. - we annotate the `DeferUsage`...

@JoviDeCroock @robrichard @benjie In this PR, the outstanding v16.x.x changes highlighted by the work in #4165 have been cherry-picked and include the following PRs: #3686 [Workaround for codesandbox having bug...

PR: breaking change 💥

We could backport https://github.com/graphql/graphql-js/pull/3730 to v17 as it's reverted in 16.x.x CC @n1ru4l This gets us to a linear history - in the future as we merge things into 16.x.x...

4D array support has been added in 18.8. However if you want to make the arrays non optional the introspectionQuery fails and the playhground doesn't work. The server does run...