mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
387 B
TypeScript
12 lines
387 B
TypeScript
import { 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 function getOperationAST(
|
|
documentAST: DocumentNode,
|
|
operationName: string
|
|
): OperationDefinitionNode;
|