@types/graphql
Advanced tools
Comparing version 0.10.1 to 0.10.2
@@ -0,0 +0,0 @@ import { GraphQLError } from './GraphQLError'; |
@@ -0,0 +0,0 @@ import { getLocation } from '../language'; |
@@ -0,0 +0,0 @@ export { GraphQLError } from './GraphQLError'; |
@@ -0,0 +0,0 @@ import { GraphQLError } from './GraphQLError'; |
@@ -0,0 +0,0 @@ import { Source } from '../language/source'; |
@@ -25,2 +25,3 @@ import { GraphQLError, locatedError } from '../error'; | ||
variableValues: { [key: string]: any }; | ||
fieldResolver: GraphQLFieldResolver<any, any>; | ||
errors: GraphQLError[]; | ||
@@ -55,3 +56,4 @@ } | ||
}, | ||
operationName?: string | ||
operationName?: string, | ||
fieldResolver?: GraphQLFieldResolver<any, any>, | ||
): Promise<ExecutionResult>; | ||
@@ -58,0 +60,0 @@ |
@@ -0,0 +0,0 @@ export { |
@@ -0,0 +0,0 @@ import { GraphQLSchema } from './type/schema'; |
@@ -8,2 +8,3 @@ // Type definitions for graphql 0.10 | ||
// Kepennar <https://github.com/kepennar> | ||
// Mikhail Novikov <https://github.com/freiksenet> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -10,0 +11,0 @@ // TypeScript Version: 2.3 |
@@ -0,0 +0,0 @@ import { Source } from './source'; |
@@ -0,0 +0,0 @@ export * from './ast'; |
@@ -0,0 +0,0 @@ // Name |
@@ -0,0 +0,0 @@ import { Token } from './ast'; |
@@ -0,0 +0,0 @@ import { Source } from "./source"; |
@@ -0,0 +0,0 @@ import { NamedTypeNode, TypeNode, ValueNode, DocumentNode } from "./ast"; |
@@ -0,0 +0,0 @@ /** |
@@ -0,0 +0,0 @@ export class Source { |
@@ -0,0 +0,0 @@ export const QueryDocumentKeys: { |
{ | ||
"name": "@types/graphql", | ||
"version": "0.10.1", | ||
"version": "0.10.2", | ||
"description": "TypeScript definitions for graphql", | ||
@@ -26,2 +26,6 @@ "license": "MIT", | ||
"url": "https://github.com/kepennar" | ||
}, | ||
{ | ||
"name": "Mikhail Novikov", | ||
"url": "https://github.com/freiksenet" | ||
} | ||
@@ -37,4 +41,4 @@ ], | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "a743775e6abf56eee739dba05a9a547b83e2ea3796d016e976f49c36f256533a", | ||
"typesPublisherContentHash": "5b7445f64a7164184475f07c2931c793c9568bbd9c93dc5d9af67f618ac1036f", | ||
"typeScriptVersion": "2.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Mon, 24 Jul 2017 18:01:45 GMT | ||
* Last updated: Wed, 02 Aug 2017 13:47:41 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by TonyYang <https://github.com/TonyPythoneer>, Caleb Meredith <https://github.com/calebmer>, Dominic Watson <https://github.com/intellix>, Firede <https://github.com/firede>, Kepennar <https://github.com/kepennar>. | ||
These definitions were written by TonyYang <https://github.com/TonyPythoneer>, Caleb Meredith <https://github.com/calebmer>, Dominic Watson <https://github.com/intellix>, Firede <https://github.com/firede>, Kepennar <https://github.com/kepennar>, Mikhail Novikov <https://github.com/freiksenet>. |
export { subscribe, createSourceEventStream } from './subscribe'; |
@@ -0,0 +0,0 @@ import { GraphQLSchema } from '../type/schema'; |
@@ -0,0 +0,0 @@ import { |
@@ -0,0 +0,0 @@ import { |
@@ -0,0 +0,0 @@ // GraphQL Schema definition |
@@ -0,0 +0,0 @@ import { |
@@ -0,0 +0,0 @@ import { GraphQLScalarType } from './definition'; |
@@ -0,0 +0,0 @@ import { |
// Helper to assert that provided names are valid. | ||
export function assertValidName(name: string): void; |
@@ -0,0 +0,0 @@ import { |
@@ -0,0 +0,0 @@ import { DocumentNode, Location } from '../language/ast'; |
@@ -0,0 +0,0 @@ import { IntrospectionQuery } from './introspectionQuery'; |
@@ -0,0 +0,0 @@ import { DocumentNode } from '../language/ast'; |
@@ -0,0 +0,0 @@ import { DocumentNode } from '../language/ast'; |
@@ -0,0 +0,0 @@ import { |
@@ -0,0 +0,0 @@ import { GraphQLSchema } from '../type/schema'; |
@@ -0,0 +0,0 @@ import { DocumentNode, OperationDefinitionNode } from '../language/ast'; |
@@ -0,0 +0,0 @@ // The GraphQL query recommended for a full schema introspection. |
@@ -0,0 +0,0 @@ import { DirectiveLocationEnum } from '../type/directives'; |
@@ -0,0 +0,0 @@ import { GraphQLInputType } from '../type/definition'; |
@@ -0,0 +0,0 @@ import { ValueNode } from '../language/ast'; |
@@ -0,0 +0,0 @@ import { GraphQLSchema } from '../type/schema'; |
@@ -0,0 +0,0 @@ import { |
@@ -0,0 +0,0 @@ import { |
@@ -0,0 +0,0 @@ import { TypeNode } from '../language/ast'; |
@@ -0,0 +0,0 @@ import { GraphQLSchema } from '../type/schema'; |
@@ -0,0 +0,0 @@ import { GraphQLInputType } from '../type/definition'; |
export { validate, ValidationContext } from './validate'; | ||
export { specifiedRules } from './specifiedRules'; |
@@ -0,0 +0,0 @@ import { ValidationContext } from './validate'; // It needs to check. |
@@ -0,0 +0,0 @@ import { GraphQLError } from '../error'; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77691
2353