Sha256: 91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90
Contents?: true
Size: 458 Bytes
Versions: 26
Compression:
Stored size: 458 Bytes
Contents
import type { Maybe } from '../jsutils/Maybe'; import type { DocumentNode, OperationDefinitionNode } from '../language/ast'; /** * Returns an operation AST given a document AST and optionally an operation * name. If a name is not provided, an operation is only returned if only one is * provided in the document. */ export declare function getOperationAST( documentAST: DocumentNode, operationName?: Maybe<string>, ): Maybe<OperationDefinitionNode>;
Version data entries
26 entries across 26 versions & 1 rubygems