@squidcloud/client
    Preparing search index...

    Interface DocsAndAlias

    Represents a collection of documents associated with a specific alias in a query, typically used in joined query results.

    interface DocsAndAlias {
        alias: string;
        docs: SquidDocument[];
    }
    Index

    Properties

    Properties

    alias: string

    The alias associated with the documents in a joined query context.

    An array of documents retrieved as part of the query.