Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/graphql

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/graphql - npm Package Compare versions

Comparing version 0.11.2 to 0.11.3

4

graphql/package.json
{
"name": "@types/graphql",
"version": "0.11.2",
"version": "0.11.3",
"description": "TypeScript definitions for graphql",

@@ -55,4 +55,4 @@ "license": "MIT",

"dependencies": {},
"typesPublisherContentHash": "5309d78cb987cc60448319cfef8ae0135d767eca06233926b07cc66c7b81a04e",
"typesPublisherContentHash": "e372ca77cc2e89e1405807e972dbf80576e96f871f888ff9763ef40597a83561",
"typeScriptVersion": "2.3"
}

@@ -11,3 +11,3 @@ # Installation

Additional Details
* Last updated: Sat, 09 Sep 2017 18:41:06 GMT
* Last updated: Mon, 11 Sep 2017 15:18:39 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: none

import {
ScalarTypeDefinitionNode,
ObjectTypeDefinitionNode,
FieldDefinitionNode,
InputValueDefinitionNode,
InterfaceTypeDefinitionNode,
UnionTypeDefinitionNode,
EnumTypeDefinitionNode,
EnumValueDefinitionNode,
InputObjectTypeDefinitionNode,
TypeExtensionDefinitionNode,
OperationDefinitionNode,

@@ -159,2 +169,3 @@ FieldNode,

description: string;
astNode?: ScalarTypeDefinitionNode;
constructor(config: GraphQLScalarTypeConfig<any, any>);

@@ -177,2 +188,3 @@

description?: string;
astNode?: ScalarTypeDefinitionNode;
serialize(value: any): TExternal | null | undefined;

@@ -223,2 +235,4 @@ parseValue?(value: any): TInternal | null | undefined;

description: string;
astNode?: ObjectTypeDefinitionNode;
extensionASTNodes: Array<TypeExtensionDefinitionNode>;
isTypeOf: GraphQLIsTypeOfFn<any, any>;

@@ -238,2 +252,4 @@

description?: string;
astNode?: ObjectTypeDefinitionNode;
extensionASTNodes?: Array<TypeExtensionDefinitionNode>;
}

@@ -281,2 +297,3 @@

description?: string;
astNode?: FieldDefinitionNode;
}

@@ -292,2 +309,3 @@

description?: string;
astNode?: InputValueDefinitionNode;
}

@@ -307,2 +325,3 @@

deprecationReason?: string;
astNode?: FieldDefinitionNode;
}

@@ -315,2 +334,3 @@

description?: string;
astNode?: InputValueDefinitionNode;
}

@@ -343,2 +363,3 @@

description: string;
astNode?: InterfaceTypeDefinitionNode;
resolveType: GraphQLTypeResolver<any, any>;

@@ -363,2 +384,3 @@

description?: string;
astNode?: InterfaceTypeDefinitionNode;
}

@@ -392,2 +414,3 @@

description: string;
astNode?: UnionTypeDefinitionNode;
resolveType: GraphQLTypeResolver<any, any>;

@@ -412,2 +435,3 @@

description?: string;
astNode?: UnionTypeDefinitionNode;
}

@@ -439,2 +463,3 @@

description: string;
astNode?: EnumTypeDefinitionNode;

@@ -454,2 +479,3 @@ constructor(config: GraphQLEnumTypeConfig);

description?: string;
astNode?: EnumTypeDefinitionNode;
}

@@ -465,2 +491,3 @@

description?: string;
astNode?: EnumValueDefinitionNode;
}

@@ -473,2 +500,3 @@

deprecationReason: string;
astNode?: EnumValueDefinitionNode;
value: any;

@@ -500,2 +528,3 @@ }

description: string;
astNode?: InputObjectTypeDefinitionNode;
constructor(config: GraphQLInputObjectTypeConfig);

@@ -510,2 +539,3 @@ getFields(): GraphQLInputFieldMap;

description?: string;
astNode?: InputObjectTypeDefinitionNode;
}

@@ -517,2 +547,3 @@

description?: string;
astNode?: InputValueDefinitionNode;
}

@@ -529,2 +560,3 @@

description?: string;
astNode?: InputValueDefinitionNode;
}

@@ -531,0 +563,0 @@

@@ -5,2 +5,3 @@ import {

} from './definition';
import { DirectiveDefinitionNode } from '../language/ast';

@@ -38,5 +39,6 @@ export const DirectiveLocation: {

name: string;
description: string;
description?: string;
locations: DirectiveLocationEnum[];
args: GraphQLArgument[];
astNode?: DirectiveDefinitionNode;

@@ -51,2 +53,3 @@ constructor(config: GraphQLDirectiveConfig);

args?: GraphQLFieldConfigArgumentMap;
astNode?: DirectiveDefinitionNode;
}

@@ -53,0 +56,0 @@

@@ -10,2 +10,5 @@ import {

import {
SchemaDefinitionNode
} from '../language/ast';
import {
GraphQLDirective,

@@ -41,2 +44,3 @@ } from './directives';

export class GraphQLSchema {
astNode?: SchemaDefinitionNode;
// private _queryType: GraphQLObjectType;

@@ -74,2 +78,3 @@ // private _mutationType: GraphQLObjectType;

directives?: GraphQLDirective[];
astNode?: SchemaDefinitionNode;
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc