graphql-transformer-common
Advanced tools
Comparing version 1.1.0-alpha.d9d538bd to 1.1.0-alpha.e0406dc1
@@ -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.d9d538bd", | ||
"version": "1.1.0-alpha.e0406dc1", | ||
"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.d9d538bd", | ||
"graphql-transformer-core": "^1.1.0-alpha.d9d538bd" | ||
"graphql-mapping-template": "^1.1.0-alpha.e0406dc1", | ||
"graphql-transformer-core": "^1.1.0-alpha.e0406dc1" | ||
}, | ||
@@ -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
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
59124
1201