Interface OperationDefinitionNode

interface OperationDefinitionNode {
    directives?: readonly DirectiveNode[];
    kind: OPERATION_DEFINITION;
    loc?: Location;
    name?: NameNode;
    operation: OperationTypeNode;
    selectionSet: SelectionSetNode;
    variableDefinitions?: readonly VariableDefinitionNode[];
}

Properties

directives?: readonly DirectiveNode[]
loc?: Location
name?: NameNode
selectionSet: SelectionSetNode
variableDefinitions?: readonly VariableDefinitionNode[]

Generated using TypeDoc