MCPcopy
hub / github.com/ardatan/graphql-tools

github.com/ardatan/graphql-tools @9.0.29 sqlite

repository ↗ · DeepWiki ↗ · release 9.0.29 ↗
1,614 symbols 4,943 edges 483 files 148 documented · 9%
README

toolkit

npm version CI Discord Chat code style: prettier renovate-app badge

This package provides a few useful ways to create a GraphQL schema:

  1. Use the GraphQL schema language to generate a schema with full support for resolvers, interfaces, unions, and custom scalars. The schema produced is completely compatible with GraphQL.js.
  2. Mock your GraphQL API with fine-grained per-type mocking
  3. Automatically stitch multiple schemas together into one larger API

Documentation

Read the docs.

Binding to HTTP

If you want to bind your JavaScript GraphQL schema to an HTTP server, you can use GraphQL Yoga .

You can develop your JavaScript based GraphQL API with graphql-tools and GraphQL Yoga together: One to write the schema and resolver code, and the other to connect it to a web server.

Example

When using graphql-tools, you describe the schema as a GraphQL type language string:

const typeDefs = /* GraphQL */ `
  type Author {
    id: ID! # the ! means that every author object _must_ have an id
    firstName: String
    lastName: String
    """
    the list of Posts by this author
    """
    posts: [Post]
  }

  type Post {
    id: ID!
    title: String
    author: Author
    votes: Int
  }

  # the schema allows the following query:
  type Query {
    posts: [Post]
  }

  # this schema allows the following mutation:
  type Mutation {
    upvotePost(postId: ID!): Post
  }

  # we need to tell the server which types represent the root query
  # and root mutation types. We call them RootQuery and RootMutation by convention.
  schema {
    query: Query
    mutation: Mutation
  }
`

export default typeDefs

Then you define resolvers as a nested object that maps type and field names to resolver functions:

const resolvers = {
  Query: {
    posts() {
      return posts
    }
  },
  Mutation: {
    upvotePost(_, { postId }) {
      const post = find(posts, { id: postId })
      if (!post) {
        throw new Error(`Couldn't find post with id ${postId}`)
      }
      post.votes += 1
      return post
    }
  },
  Author: {
    posts(author) {
      return filter(posts, { authorId: author.id })
    }
  },
  Post: {
    author(post) {
      return find(authors, { id: post.authorId })
    }
  }
}

export default resolvers

At the end, the schema and resolvers are combined using makeExecutableSchema:

import { makeExecutableSchema } from '@graphql-tools/schema'

const executableSchema = makeExecutableSchema({
  typeDefs,
  resolvers
})

GraphQL-Tools schema can be consumed by frameworks like GraphQL Yoga, Apollo GraphQL or express-graphql For example in Node.js;

const { createYoga } = require('graphql-yoga')
const { createServer } = require('http')

const yoga = createYoga({
  schema: executableSchema
})

const server = createServer(yoga)

server.listen(4000, () => {
  console.log('Yoga is listening at http://localhost:4000/graphql')
})

You can check GraphQL Yoga for other JavaScript platforms and frameworks besides vanilla Node.js HTTP.

This example has the entire type definition in one string and all resolvers in one file, but you can combine types and resolvers from multiple files and objects, as documented in the modularizing type definitions and merging resolvers section of the docs.

Contributions

Contributions, issues and feature requests are very welcome. If you are using this package and fixed a bug for yourself, please consider submitting a PR!

And if this is your first time contributing to this project, please do read our Contributor Workflow Guide before you get started off.

Code of Conduct

Help us keep GraphQL Tools open and inclusive. Please read and follow our Code of Conduct as adopted from Contributor Covenant

Maintainers

Extension points exported contracts — how you extend this code

Loader (Interface)
(no doc) [10 implementers]
packages/utils/src/loaders.ts
IMockStore (Interface)
(no doc) [2 implementers]
packages/mock/src/types.ts
MergeResolversOptions (Interface)
(no doc)
packages/merge/src/merge-resolvers.ts
LegacyWSExecutorOpts (Interface)
(no doc)
packages/executors/legacy-ws/src/index.ts
PathAliases (Interface)
(no doc)
packages/import/src/index.ts
SingularExecutionResult (Interface)
(no doc)
packages/executor/src/execution/execute.ts
GraphQLTagPluckOptions (Interface)
(no doc)
packages/graphql-tag-pluck/src/index.ts
Options (Interface)
(no doc)
packages/webpack-loader/src/index.ts

Core symbols most depended-on inside this repo

parse
called by 340
packages/loaders/git/src/parse.ts
get
called by 248
packages/mock/src/types.ts
set
called by 220
packages/mock/src/types.ts
expectJSON
called by 179
packages/executor/src/__testUtils__/expectJSON.ts
makeExecutableSchema
called by 151
packages/schema/src/makeExecutableSchema.ts
getType
called by 129
packages/mock/src/MockStore.ts
freeText
called by 127
packages/graphql-tag-pluck/src/utils.ts
join
called by 108
packages/utils/src/comments.ts

Shape

Function 1,298
Method 169
Class 76
Interface 66
Enum 5

Languages

TypeScript100%

Modules by API surface

packages/executor/src/execution/execute.ts75 symbols
packages/import/src/index.ts46 symbols
packages/utils/tests/mapSchema.test.ts37 symbols
packages/relay-compiler/lib/core/Schema.js30 symbols
packages/schema/tests/schemaGenerator.test.ts27 symbols
packages/graphql-tag-pluck/src/index.ts27 symbols
packages/executor/src/execution/__tests__/executor-test.ts26 symbols
packages/loaders/url/src/index.ts25 symbols
packages/mock/src/MockStore.ts24 symbols
packages/utils/src/comments.ts21 symbols
packages/utils/src/print-schema-with-directives.ts18 symbols
packages/relay-compiler/lib/codegen/CodegenWatcher.js18 symbols

Dependencies from manifests, versioned

@apollo/client4.2.0 · 1×
@ardatan/relay-compiler13.0.1 · 1×
@astrojs/compiler4.0.0 · 1×
@babel/core7.29.7 · 1×
@babel/parser7.29.3 · 1×
@babel/plugin-proposal-class-properties7.18.6 · 1×
@babel/plugin-proposal-explicit-resource-management7.27.4 · 1×
@babel/plugin-syntax-import-assertions7.26.0 · 1×
@babel/plugin-transform-class-static-block7.29.7 · 1×
@babel/preset-env7.29.7 · 1×
@babel/preset-typescript7.29.7 · 1×
@babel/runtime7.29.2 · 1×

For agents

$ claude mcp add graphql-tools \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact