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

# Use case I'm trying to introspect[ Gitlab API schema ](https://gitlab.com/api/graphql) with [default introspection query ](https://graphql-js.org/api/function/getintrospectionquery/) . Unfortunately Giltab API fails with the error: `Query has complexity of 220, which...

I initially reported this as an LSP error (https://github.com/graphql/graphiql/issues/4138), but turns out it's an error in `graphql-js`.

Adds last TWO guides for the GraphQL production guide improvements: - guide 1 is on error handling and debugging + includes format errors, custom error types, debugging production issues, and...

Given this file `repro.mjs`: ```javascript import { buildSchema, validateSchema, parse, validate } from "graphql"; const schema = buildSchema(` scalar GeoPoint scalar Float type Query { restaurantsNear(loc: GeoPoint!): [String] } `)...

This PR replaces our IncrementalGraph implementation with a formalized WorkQueue construct with its own spec-like behavior. The PR also enhances Queues to be more Repeater-like, handling pushing async values in...

PR: feature 🚀

Related https://github.com/ardatan/graphql-tools/pull/7716 Fixes the bug when a `GraphQLDirective` instance is passed with the same name as specified directives, `isSpecifiedDirective` returns true unexpectedly.

Adds second guide in the GraphQL in production series. Covers: - Security considerations - Trusted documents!! - Schema introspection controls - Query complexity - Rate limiting - Authentication and authorization...

I can't push to `16.x.x` directly so.... please do merge pull request and not squash and merge

Implementation of: https://github.com/graphql/graphql-spec/pull/1184 @benjie

spec RFC