Pinecone TypeScript SDK - v8.1.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
    pagination?: Pagination
    records: { [key: string]: PineconeRecord<T> }