1 | import type { VariableToType } from './collectVariables';
|
2 | import type { GraphQLSchema, DocumentNode, OperationDefinitionNode } from 'graphql';
|
3 | export declare type OperationASTFacts = {
|
4 | variableToType?: VariableToType;
|
5 | operations: OperationDefinitionNode[];
|
6 | };
|
7 | export declare function getOperationASTFacts(documentAST: DocumentNode, schema?: GraphQLSchema | null): OperationASTFacts;
|
8 | export declare type OperationFacts = {
|
9 | documentAST: DocumentNode;
|
10 | } & OperationASTFacts;
|
11 | export declare type QueryFacts = OperationFacts;
|
12 | export default function getOperationFacts(schema?: GraphQLSchema | null, documentString?: string | null): OperationFacts | undefined;
|
13 | export declare const getQueryFacts: typeof getOperationFacts;
|
14 |
|
\ | No newline at end of file |