RLS DSL - v0.1.0
    Preparing search index...

    Interface LogicalCondition

    Logical operator condition (AND/OR)

    interface LogicalCondition {
        toSQL(): string;
        type: "logical";
        operator: ConditionOperator;
        conditions: Condition[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    type: "logical"
    conditions: Condition[]

    Methods