Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Type Alias FetchByMetadataResponse<T>

    The response from Index.fetchByMetadata

    type FetchByMetadataResponse<T extends RecordMetadata = RecordMetadata> = {
        namespace: string;
        pagination?: Pagination;
        records: { [key: string]: PineconeRecord<T> };
        usage?: OperationUsage;
    }

    Type Parameters

    Index
    namespace: string

    Namespace containing the records.

    pagination?: Pagination

    Contains next when another page is available.

    records: { [key: string]: PineconeRecord<T> }

    Records matching the filter, keyed by ID.

    Read units consumed by this request.