summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/utilities/getOperationAST.d.ts
blob: d17a9b495cefe9049359a607891277e4b80ed433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Maybe } from '../jsutils/Maybe';

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?: Maybe<string>,
): Maybe<OperationDefinitionNode>;