interface FragmentDefinitionNode {
    directives?: readonly DirectiveNode[];
    kind: "FragmentDefinition";
    loc?: Location;
    name: NameNode;
    selectionSet: SelectionSetNode;
    typeCondition: NamedTypeNode;
    variableDefinitions?: readonly VariableDefinitionNode[];
}

Properties

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