-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow aggregation of queryables across collections #505
Comments
Is the response different from |
Ah no, thanks! I forgot that we just added that :-). The primary motivating use-case was around "I have this subset of collections that I want to query against", so just client.get_queryables(collections=["a", "b"]) that would hit |
Yeah and that feels more ergonomic than something like this? set(client.get_collection(c).get_queryables() for c in ["a", "b"]) |
The response from
@gadomski -- does that fit the bill for this? |
Hopefully, right? Probably worth
Yeah, drop it.
In this case I think we should drop the entry. If the What to do about |
It can be useful to find the set of queryables available across collections. Here's one possible usage:
There's a question to resolve around whether
queryables()
should hit/queryables
or do an aggregation of all collections.The text was updated successfully, but these errors were encountered: