graphql-transformer-common
Advanced tools
Comparing version 1.0.27 to 1.1.0-alpha.0a106b94
@@ -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.0.27", | ||
"version": "1.1.0-alpha.0a106b94", | ||
"description": "Common code and constants for AppSync Transformers", | ||
@@ -21,4 +21,4 @@ "main": "lib/index.js", | ||
"graphql": "^0.13.2", | ||
"graphql-mapping-template": "^1.0.27", | ||
"graphql-transformer-core": "^1.0.27" | ||
"graphql-mapping-template": "^1.1.0-alpha.0a106b94", | ||
"graphql-transformer-core": "^1.1.0-alpha.0a106b94" | ||
}, | ||
@@ -49,4 +49,3 @@ "devDependencies": { | ||
] | ||
}, | ||
"gitHead": "c90740936a898d3975a7a99d5827c9d357be0efe" | ||
} | ||
} |
@@ -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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
1201
59124
40
2
+ Addedgraphql-mapping-template@1.1.0-alpha.faff0c3c(transitive)
+ Addedgraphql-transformer-core@1.1.0-alpha.faff0c3c(transitive)
- Removedgraphql-mapping-template@1.0.33(transitive)
- Removedgraphql-transformer-core@1.0.33(transitive)