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

    Interface JoinDefinition

    Join definition

    interface JoinDefinition {
        table: string;
        alias?: string;
        on: Condition;
        type?: "inner" | "left" | "right" | "full";
    }
    Index

    Properties

    Properties

    table: string
    alias?: string
    type?: "inner" | "left" | "right" | "full"