UNPKG

@graphql-tools/utils

Version:

Common package containing utils and types for GraphQL tools

5 lines (4 loc) 353 B
import { DocumentNode, OperationDefinitionNode } from 'graphql'; import { ExecutionRequest } from './Interfaces.cjs'; export declare function getOperationASTFromDocument(documentNode: DocumentNode, operationName?: string): OperationDefinitionNode; export declare const getOperationASTFromRequest: (request: ExecutionRequest) => OperationDefinitionNode;