-
Notifications
You must be signed in to change notification settings - Fork 567
Closed
Labels
api: firestoreIssues related to the Firestore API.Issues related to the Firestore API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Description
The javascript firestore SDK supports .where(fieldname, "!=", null) (since version 7.21.0), which is great and a really usefull query. For the ruby sdk I did notice this method is not supported yet. See docs.
Describe the solution you'd like
- add support for
db.col.where(fieldname, "!=", nil)
Describe alternatives you've considered
- using the javascript SDK and deploying an API solely for this specific query (time-consuming)
- fetching all documents and filtering them on my server with ruby (costly)
Metadata
Metadata
Assignees
Labels
api: firestoreIssues related to the Firestore API.Issues related to the Firestore API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.