graphql-transformer-common
Advanced tools
Comparing version 1.1.0-alpha.2631c6c8 to 1.1.0-alpha.694cc790
@@ -25,2 +25,3 @@ import { ObjectTypeDefinitionNode, InputValueDefinitionNode, FieldDefinitionNode, TypeNode, SchemaDefinitionNode, OperationTypeNode, OperationTypeDefinitionNode, ObjectTypeExtensionNode, NamedTypeNode, NonNullTypeNode, ListTypeNode, ArgumentNode, DirectiveNode, EnumTypeDefinitionNode, ValueNode } from 'graphql'; | ||
export declare function isListType(type: TypeNode): boolean; | ||
export declare function isNonNullType(type: TypeNode): boolean; | ||
export declare const getDirectiveArgument: (directive: DirectiveNode) => (arg: string, dflt?: any) => any; | ||
@@ -27,0 +28,0 @@ export declare function unwrapNonNull(type: TypeNode): any; |
@@ -101,2 +101,6 @@ "use strict"; | ||
exports.isListType = isListType; | ||
function isNonNullType(type) { | ||
return type.kind === graphql_1.Kind.NON_NULL_TYPE; | ||
} | ||
exports.isNonNullType = isNonNullType; | ||
exports.getDirectiveArgument = function (directive) { return function (arg, dflt) { | ||
@@ -103,0 +107,0 @@ var get = function (s) { return function (arg) { return arg.name.value === s; }; }; |
{ | ||
"name": "graphql-transformer-common", | ||
"version": "1.1.0-alpha.2631c6c8", | ||
"version": "1.1.0-alpha.694cc790", | ||
"description": "Common code and constants for AppSync Transformers", | ||
@@ -21,4 +21,4 @@ "main": "lib/index.js", | ||
"graphql": "^0.13.2", | ||
"graphql-mapping-template": "^1.1.0-alpha.2631c6c8", | ||
"graphql-transformer-core": "^1.1.0-alpha.2631c6c8" | ||
"graphql-mapping-template": "^1.1.0-alpha.694cc790", | ||
"graphql-transformer-core": "^1.1.0-alpha.694cc790" | ||
}, | ||
@@ -25,0 +25,0 @@ "devDependencies": { |
@@ -102,2 +102,6 @@ import { | ||
export function isNonNullType(type: TypeNode): boolean { | ||
return type.kind === Kind.NON_NULL_TYPE; | ||
} | ||
export const getDirectiveArgument = (directive: DirectiveNode) => (arg: string, dflt?: any) => { | ||
@@ -104,0 +108,0 @@ const get = (s: string) => (arg: ArgumentNode) => arg.name.value === s |
Sorry, the diff of this file is not supported yet
59124
1201