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

    Interface ContextValue

    Context value that can be used in conditions

    interface ContextValue {
        toSQL(): string;
        type: "context";
        contextType: "auth_uid" | "session" | "current_user";
        key?: string;
        sessionType?: SessionVariableType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    type: "context"
    contextType: "auth_uid" | "session" | "current_user"
    key?: string
    sessionType?: SessionVariableType

    Methods