@graphql-tools/utils
Version:
Common package containing utils and types for GraphQL tools
17 lines (16 loc) • 800 B
text/typescript
import type { ASTNode, DirectiveNode, GraphQLSchema } from 'graphql';
export type DirectableASTNode = ASTNode & {
directives?: readonly DirectiveNode[] | undefined;
};
export type DirectableObject = {
astNode?: DirectableASTNode | null | undefined;
extensionASTNodes?: readonly DirectableASTNode[] | null | undefined;
extensions?: {
directives?: Record<string, any> | undefined;
} | null | undefined;
};
export declare function getDirectiveExtensions<TDirectiveAnnotationsMap extends {
[directiveName: string]: {
[paramName: string]: any;
};
}>(directableObj: DirectableObject, schema?: GraphQLSchema, pathToDirectivesInExtensions?: string[]): { [directiveName in keyof TDirectiveAnnotationsMap]?: TDirectiveAnnotationsMap[directiveName][] | undefined; };