interface SelectionSetNode {
    kind: "SelectionSet";
    loc?: Location;
    selections: readonly SelectionNode[];
}

Properties

Properties

kind: "SelectionSet"
loc?: Location
selections: readonly SelectionNode[]