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

A reference implementation of GraphQL for JavaScript

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

Fixes #2183 Created ESLint rule to check whether internal API functions are properly annotated or not Added support to get list of public API functions (map.json created during linting) to...

## `buildSchema`, `buildASTSchema` and `extendSchema`: ### DONE: :tada: - [x] can lookup for type field resolvers https://github.com/graphql/graphql-js/commit/9157529987f7f33ff7a1b0aedecace4e19e677dc - [x] `enum` value lookup (exactly like previous) https://github.com/graphql/graphql-js/commit/1b0f68a8ba6b87e6b38a70424f63a7668ce864e7 - [x] tests https://github.com/graphql/graphql-js/pull/1987/commits/84adacf05643e11e46e67335b7e3369977a5e476...

linked to issue #1341 I saw that this issue has not received new pull requests for a while, or at least I dont think so. I am proposing an implementation...

As @leebyron suggested during last WG I'm adopting #914 and rebasing it on top of current `master`. Here is the original description: This proposes an additive change which allows custom...

CLA Signed
spec RFC

Spec PR: - ~~https://github.com/graphql/graphql-spec/pull/1153~~ - https://github.com/graphql/graphql-spec/pull/1163

There are a couple of `Formatted...Result` types that don't seem to be used anywhere. Therefore, they are also not checked for consistency. For instance, there is a `FormattedCompletedResult`, but not...

to notify theoretical users via deep import of imminent removal

PR: polish 💅

# Request: Add a Pretty-Printing function to go from AST => well-formatted string This is a utility I've wanted to exist as part of the core library for a long...

enhancement

This is the [PR I raised](https://github.com/twof/graphql-js/pull/5) against #4271 back in November rebased on v16.10.0 demonstrating a version of semantic nullability demonstrating how we didn't need new both `SemanticNonNull` and `SemanticNullable`...

This part of your documentation is kind of worthless: ```js var app = express() app.all( "/graphql", createHandler({ schema: schema, rootValue: root, }) ) app.listen(4000) ``` Why do you keep repeating...