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

    Interface BetweenExpression

    interface BetweenExpression {
        kind: "between_expression";
        lower: Expression;
        negated: boolean;
        range: Range;
        test: Expression;
        upper: Expression;
    }

    Hierarchy (View Summary)

    Index
    kind: "between_expression"
    lower: Expression
    negated: boolean
    range: Range
    upper: Expression