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

Properties

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