Type Alias FetchByMetadataResponse<T>

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

The response from Index.fetchByMetadata

Type Parameters

Type declaration