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

:wrench: Utility library for GraphQL to build, stitch and mock GraphQL schemas in the SDL-first approach

Results 297 graphql-tools issues
Sort by recently updated
recently updated
newest added

For the given GraphQL executable document: ```ts const AllFilmsWithVariablesQuery = graphql(/* GraphQL */ ` query allFilmsWithVariablesQuery($first: Int!) { allFilms(first: $first) { edges { node { ...FilmItem } } } }...

### Issue workflow progress _Progress of the issue based on the [Contributor Workflow](https://github.com/the-guild-org/Stack/blob/master/CONTRIBUTING.md#a-typical-contributor-workflow)_ - [ ] 1. The issue provides a reproduction available on Github, Stackblitz or CodeSandbox > Make...

Hello, I've been implementing in an API the method `batchDelegateToSchema` from the library. I'm sharing the following media to show the issue I have with the response and details immediately...

Hi, we have a graphql API with the following structure ```GraphQL interface Foo { pk: ID } type Bar implements Foo { pk: ID bar: String } type Nested {...

**Is your feature request related to a problem? Please describe.** I want to slitch my graphql schema to some different subset. And I found there is a transform that named...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [graphql-request](https://togithub.com/jasonkuhrt/graphql-request) | [`^6.0.0` -> `^7.0.0`](https://renovatebot.com/diffs/npm/graphql-request/6.1.0/7.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/graphql-request/7.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)...

dependencies

### Issue workflow progress _Progress of the issue based on the [Contributor Workflow](https://github.com/the-guild-org/Stack/blob/master/CONTRIBUTING.md#a-typical-contributor-workflow)_ - [ ] 1. The issue provides a reproduction available on Github, Stackblitz or CodeSandbox > Make...

Exposing the delegation plan; When you enable the environment variable, `EXPOSE_DELEGATION_PLAN`, you can see the delegation plan in the console. This can be useful for debugging and understanding how the...

Deduplicate fields, inline fragment spreads and fragment spreads before sending the operation document to the subschema See tests for the use cases