Fetch Vectors Based Only On Metadata Filters

Hi, I am looking to fetch all vectors that match a meta data filter.
I see that query and fetch require an actual Vector to be sent in to search.

I would like to ask for all Vectors that have a metadata filter of say:

{
“category”: “books”
}

Is this possible?

thanks

2 Likes

I have the same question. Did you find a solution?

I ended up generating IDs for the vectors and storing them in my relational DB. That way I can just delete the vectors by ID. Hope that helps