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

    Interface FunctionCondition

    Function call condition

    interface FunctionCondition {
        toSQL(): string;
        type: "function";
        functionName: string;
        arguments: (string | Condition)[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    type: "function"
    functionName: string
    arguments: (string | Condition)[]

    Methods