You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thank you for this library as I've been using this for a small Firestore-Google Sheets project. I have a rather large collection of documents and I need to retrieve 10-20 at a time using the IN operator.
I'm not sure if I missed it in the docs but this doesn't seem to be supported yet. Is there an operator I can use to query something like: where field IN [1,2,3,4,5]?
The text was updated successfully, but these errors were encountered:
Sorry, I should give a clearer explanation. I have a collection in 'path/to/collection' in which each item has a string ID field, let's say test1, test2, etc. There can be potentially hundreds of these items with unique IDs but I would like to query X at a time by providing an array of IDs like so (in SQL terms):
SELECT * FROM collection WHERE ID IN ("test1", "test2", "test3", "test4")
Also works if I can just query by the actual Document ID (or UID), I've made redundancies in case only one of them works.
Hi, thank you for this library as I've been using this for a small Firestore-Google Sheets project. I have a rather large collection of documents and I need to retrieve 10-20 at a time using the IN operator.
I'm not sure if I missed it in the docs but this doesn't seem to be supported yet. Is there an operator I can use to query something like: where field IN [1,2,3,4,5]?
The text was updated successfully, but these errors were encountered: