@squidcloud/client
    Preparing search index...

    Interface JoinOptions

    Options for configuring a join query. Specifies aliasing and whether the join is inner or outer.

    interface JoinOptions {
        isInner?: boolean;
        leftAlias: string;
    }
    Index

    Properties

    Properties

    isInner?: boolean

    Whether the join should be an inner join (default is outer join).

    leftAlias: string

    Alias for the left collection in the join.