Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to query Cloud Firestore for non-existing keys of documents

Let's say I have a data model with some optional properties. This could be for example a user object with a "firstname", a "lastname" and an optional "website" property.

In Cloud Firestore only user documents with a known website would have the "website" property set, for all other user documents this property would not exist.

My questions is now how to query for all user documents without a "website" property.

Thanks.

like image 261
Georg Avatar asked Oct 18 '17 09:10

Georg


People also ask

How do I get specific data from firestore?

There are three ways to retrieve data stored in Cloud Firestore. Any of these methods can be used with documents, collections of documents, or the results of queries: Call a method to get the data once. Set a listener to receive data-change events.

Does firestore Create collection if not exists?

Collections and documents are created implicitly in Cloud Firestore. Simply assign data to a document within a collection. If either the collection or document does not exist, Cloud Firestore creates it.

Can you query firestore?

With the in query, you can query a specific field for multiple values (up to 10) in a single query. You do this by passing a list containing all the values you want to search for, and Cloud Firestore will match any document whose field equals one of those values.


1 Answers

Documents can contain properties with a null value data type (see data types documentation). This will then allow you to construct a query to limit results where the website property is null.

This is not quite the same as a missing property, but if you use custom objects to write data to Firestore, empty properties will automatically be saved as null rather than not at all. You can also manually/programmatically write a null value to the database.

In Android, I tested this using the following:

FirebaseFirestore.getInstance().collection("test").whereEqualTo("website", null).get(); 

Where my database structure looked like:

example firestore structure

This returned only the document inuwlZOvZNTHuBakS6GV, because document 9Hf7uwORiiToOKz6zcsX contains a string value in the website property.

I believe you usually develop in Swift, where unfortunately custom objects aren't supported, but you can use NSNull() to write a null value to Firestore. For example (I'm not proficient in Swift, so feel free to correct any issues):

// Writing data let docData: [String: Any] = [     "firstname": "Example",     "lastname": "User",     "website": NSNull() ] db.collection("data").document("one").setData(docData) { err in     if let err = err {         print("Error writing document: \(err)")     } else {         print("Document successfully written!")     } }  // Querying for null values let query = db.collection("test").whereField("website", isEqualTo: NSNull()) 

The documentation doesn't mention a method to query for values that don't exist, so this seems like the next best approach. If anyone can improve or suggest alternatives, please do.

like image 133
Grimthorr Avatar answered Sep 28 '22 05:09

Grimthorr