• Stars
    star
    5,273
  • Rank 7,440 (Top 0.2 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 8 years ago
  • Updated 23 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

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

More Repositories

1

graphql-mesh

The Graph of Everything - Federated architecture for any API service
TypeScript
3,150
star
2

graphql-import

Import & export definitions in GraphQL SDL
871
star
3

feTS

TypeScript HTTP Framework focusing on e2e type-safety, easy setup, performance & great developer experience
TypeScript
560
star
4

graphql-toolkit

A set of utils for faster development of GraphQL tools
168
star
5

whatwg-node

Helper packages to create platform agnostic applications and libraries without worrying about the lack of WHATWG support in Node.js
TypeScript
140
star
6

meteor-webpack

https://medium.com/@ardatan/meteor-with-webpack-in-2018-faster-compilation-better-source-handling-benefit-from-bc5ccc5735ef
JavaScript
122
star
7

stencil-apollo

Stencil Apollo Library
TypeScript
98
star
8

graphql-import-node

Import 'graphql' files in NodeJS
JavaScript
79
star
9

schema-stitching

Automatically stitch multiple schemas together into one larger API in a simple, fast and powerful way.
MDX
41
star
10

graphql-mesh-workshop

14
star
11

WhatsApp-Clone-client-Stencil

WhatsApp Clone based on Stencil and Ionic 4
TypeScript
12
star
12

graphql-modules-accountsjs-boilerplate

https://medium.com/the-guild/authentication-with-accountsjs-graphql-modules-e0fb9799a9da
TypeScript
11
star
13

react-native-browser-polyfills

Set of browser polyfills for React Native
JavaScript
8
star
14

TypeGraphQLModules

GraphQL-Modules TypeGraphQL Integration Example
TypeScript
6
star
15

react-native-meteor-polyfills

https://medium.com/@ardatan/connecting-react-native-and-meteor-w-o-any-3rd-party-library-in-2018-3e784d33acb0
JavaScript
5
star
16

angular-rss-reader

RSS Reader for Angular
TypeScript
4
star
17

msgraph-react-mesh-sdk

MS Graph SDK Example on React project using GraphQL Mesh
TypeScript
3
star
18

fetchache

Cross platform Fetch with Generic Key Value Cache support
2
star
19

meteor-mocha

Mocha Testing Package for Meteor
JavaScript
2
star
20

nodejs-typescript-starter

Created with CodeSandbox
TypeScript
2
star