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

    Interface SubqueryCondition

    Subquery condition

    interface SubqueryCondition {
        toSQL(): string;
        type: "subquery";
        column: string;
        operator: "in" | "not in" | "exists" | "not exists";
        subquery: SubqueryDefinition;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    type: "subquery"
    column: string
    operator: "in" | "not in" | "exists" | "not exists"

    Methods