dynamodb-partiql-parser - v0.1.1
    Preparing search index...

    Interface SetOpClause

    interface SetOpClause {
        all: boolean;
        kind: "set_op_clause";
        operator: "UNION" | "INTERSECT" | "EXCEPT";
        range: Range;
        right: SelectStatement | ErrorStatement;
    }

    Hierarchy (View Summary)

    Index
    all: boolean
    kind: "set_op_clause"
    operator: "UNION" | "INTERSECT" | "EXCEPT"
    range: Range