nodejs-polars
    Preparing search index...

    Interface JoinOptions

    options for join operations

    interface JoinOptions {
        how?: JoinType;
        leftOn?: string | string[];
        on?: string | string[];
        rightOn?: string | string[];
        suffix?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    how?: JoinType

    join type

    leftOn?: string | string[]

    left join column

    on?: string | string[]

    left and right join column

    rightOn?: string | string[]

    right join column

    suffix?: string