@graphql-tools/utils
Version:
Common package containing utils and types for GraphQL tools
12 lines (11 loc) • 946 B
TypeScript
import { GraphQLSchema } from 'graphql';
import { DirectableObject } from './getDirectiveExtensions.js';
export interface DirectiveAnnotation {
name: string;
args?: Record<string, any>;
}
export type DirectableGraphQLObject = DirectableObject;
export declare function getDirectivesInExtensions(node: DirectableGraphQLObject, pathToDirectivesInExtensions?: string[]): Array<DirectiveAnnotation>;
export declare function getDirectiveInExtensions(node: DirectableGraphQLObject, directiveName: string, pathToDirectivesInExtensions?: string[]): Array<Record<string, any>> | undefined;
export declare function getDirectives(schema: GraphQLSchema, node: DirectableGraphQLObject, pathToDirectivesInExtensions?: string[]): Array<DirectiveAnnotation>;
export declare function getDirective(schema: GraphQLSchema, node: DirectableGraphQLObject, directiveName: string, pathToDirectivesInExtensions?: string[]): Array<Record<string, any>> | undefined;