forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
49 lines (40 loc) · 1.61 KB
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* GraphQL.js provides a reference implementation for the GraphQL specification
* but is also a useful utility for operating on GraphQL files and building
* sophisticated tools.
*
* This primary module exports a general purpose function for fulfilling all
* steps of the GraphQL specification in a single operation, but also includes
* utilities for every part of the GraphQL specification:
*
* - Parsing the GraphQL language.
* - Building a GraphQL type schema.
* - Validating a GraphQL request against a type schema.
* - Executing a GraphQL request against a type schema.
*
* This also includes utility functions for operating on GraphQL types and
* GraphQL documents to facilitate building tools.
*
* You may also import from each sub-directory directly. For example, the
* following two import statements are equivalent:
*
* import { parse } from 'graphql';
* import { parse } from 'graphql/language';
*/
// The GraphQL.js version info.
export * from "./version.ts";
// The primary entry point into fulfilling a GraphQL request.
export * from "./graphql.ts";
// Create and operate on GraphQL type definitions and schema.
export * from "./type/mod.ts";
// Parse and operate on GraphQL language source files.
export * from "./language/mod.ts";
// Execute GraphQL queries.
export * from "./execution/mod.ts";
export * from "./subscription/mod.ts";
// Validate GraphQL documents.
export * from "./validation/mod.ts";
// Create, format, and print GraphQL errors.
export * from "./error/mod.ts";
// Utilities for operating on GraphQL type schema and parsed sources.
export * from "./utilities/mod.ts";