Rowguard - RLS Policy DSL - v0.2.0
    Preparing search index...

    Interface ContextValue

    Context value that can be used in conditions

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

    Hierarchy (View Summary)

    Index

    Properties

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

    Methods