How can I query firestore by document snapshot updateTime?
问题 Is it possible to query firestore documents by updateTime . The field that is available from the document snapshot as doc.updateTime and use it in a where query? I am using the node.js sdk. 回答1: As far as I know there is no way to query on the metadata that Firestore automatically maintains. If you need to query the last update date, you will need to add a field with that value to the document's data. 回答2: I really need to query Firebase on document _updateTime, so I wrote a function that