@graphql-tools/utils
Advanced tools
Comparing version 10.5.4 to 10.5.5-alpha-20241015101504-5852a7950b869e3e435eefb1bc585805c56be9c7
{ | ||
"name": "@graphql-tools/utils", | ||
"version": "10.5.4", | ||
"version": "10.5.5-alpha-20241015101504-5852a7950b869e3e435eefb1bc585805c56be9c7", | ||
"description": "Common package containing utils and types for GraphQL tools", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
import type { ASTNode, DirectiveNode, GraphQLSchema } from 'graphql'; | ||
export type DirectableASTNode = ASTNode & { | ||
directives?: readonly DirectiveNode[]; | ||
directives?: readonly DirectiveNode[] | undefined; | ||
}; | ||
export type DirectableObject = { | ||
astNode?: DirectableASTNode | null; | ||
extensionASTNodes?: readonly DirectableASTNode[] | null; | ||
astNode?: DirectableASTNode | null | undefined; | ||
extensionASTNodes?: readonly DirectableASTNode[] | null | undefined; | ||
extensions?: { | ||
directives?: Record<string, any>; | ||
} | null; | ||
directives?: Record<string, any> | undefined; | ||
} | null | undefined; | ||
}; | ||
@@ -12,0 +12,0 @@ export declare function getDirectiveExtensions<TDirectiveAnnotationsMap extends { |
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
507566
2