firestore で where で id を検索する

2021/2/28
firestore firebase
const querySnap = collection.where(firebase.firestore.FieldPath.documentId(), '<', '100').get();

といった風に FieldPath.documentId() を使う。

FYI: https://stackoverflow.com/questions/48466028/query-firebase-firestore-documents-by-the-id/48467056