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

A reference implementation of GraphQL for JavaScript

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

[Schema for more reference](https://gist.github.com/u9g/81cfc470c039a2973e3892558698bb58) So here's the problem. When putting our inline fragment for `NumberLiteral` in the `value` edge. \[1] We are shown an error \[2] stating the following: >...

Link to api docs in the README of this project will help user to easily access the api section . Instead of a hassle to find the docs .

[#3049 rebased on main](https://github.com/graphql/graphql-js/pull/3049). This is the last rebased PR from the original PR stack concluding with #3049. * Rebased: #3809 [Original: #3092] * Rebased: #3810 [Original: #3074] * Rebased:...

PR: breaking change 💥
spec RFC

How can we pass arguments into the resolvers by just using `buildSchema` and `graphql`? My code: ``` var schema = buildSchema(` type Query { hello: String greet(name: String): String }...

Hey everyone 👋 This PR addresses https://github.com/graphql/graphql-js/issues/3764 ### How it works It extends `ExecutionArgs` with `signal?: AbortSignal`. Then, during the execution, we check whether signal is present and aborted. If...

PR: feature 🚀

by inlining executeStreamIteratorItem depends on #3798

PR: bug fix 🐞

Many of my types and many fields on some of my types shouldn't be exposed to some subsets of my users. Is there a way to limit visibility on introspection...

enhancement