Мне нужно запросить документы, в которых ключ не существует в коллекции
Я пытался
this.dbCollectionService.userCollection.ref.where('socialUserId','==',typeof null).get().then(res => {
res.forEach(
documentSnapshot => {
console.log('in');
//this.selectedUser$ = this.firestore.doc(documentSnapshot.ref);
console.log(documentSnapshot.data());
});
}).catch(err => {
});
this.dbCollectionService.userCollection.ref.where('socialUserId','==',typeof undefined).get().then(res => {
res.forEach(
documentSnapshot => {
console.log('in');
//this.selectedUser$ = this.firestore.doc(documentSnapshot.ref);
console.log(documentSnapshot.data());
});
}).catch(err => {
});
Но оба не работают