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

    Interface MembershipCondition

    Membership condition (in, contains)

    interface MembershipCondition {
        toSQL(): string;
        type: "membership";
        column: string;
        operator: "in" | "contains";
        value:
            | string
            | number
            | boolean
            | Date
            | SubqueryDefinition
            | (string | number | boolean | Date | null)[]
            | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    type: "membership"
    column: string
    operator: "in" | "contains"
    value:
        | string
        | number
        | boolean
        | Date
        | SubqueryDefinition
        | (string | number | boolean | Date | null)[]
        | null

    Methods