@squidcloud/client
    Preparing search index...

    Interface JoinFields<ReturnType>

    Defines the fields used for joining two collections in a query. Specifies the left and right fields that establish the join relationship.

    interface JoinFields<ReturnType> {
        left: string;
        right: keyof ReturnType & string;
    }

    Type Parameters

    • ReturnType
    Index

    Properties

    Properties

    left: string

    Field from the left collection to be used in the join.

    right: keyof ReturnType & string

    Field from the right collection to be used in the join.