interface InlineFragmentNode {
    directives?: readonly DirectiveNode[];
    kind: "InlineFragment";
    loc?: Location;
    selectionSet: SelectionSetNode;
    typeCondition?: NamedTypeNode;
}

Properties

directives?: readonly DirectiveNode[]
kind: "InlineFragment"
loc?: Location
selectionSet: SelectionSetNode
typeCondition?: NamedTypeNode