flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
13
VISUALIZACION/node_modules/graphql/utilities/getOperationAST.d.ts
generated
vendored
Executable file
13
VISUALIZACION/node_modules/graphql/utilities/getOperationAST.d.ts
generated
vendored
Executable file
|
|
@ -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>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue