diff options
Diffstat (limited to 'includes/external/school/node_modules/graphql/utilities/getOperationAST.d.ts')
-rw-r--r-- | includes/external/school/node_modules/graphql/utilities/getOperationAST.d.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/includes/external/school/node_modules/graphql/utilities/getOperationAST.d.ts b/includes/external/school/node_modules/graphql/utilities/getOperationAST.d.ts new file mode 100644 index 0000000..d17a9b4 --- /dev/null +++ b/includes/external/school/node_modules/graphql/utilities/getOperationAST.d.ts @@ -0,0 +1,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>; |