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

Properties

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

Generated using TypeDoc