Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
310 views
in Technique[技术] by (71.8m points)

javascript - how to fetch all docouments with an ID that doesnt exist in the given array? (Cloud Firestore)

I have an array of IDs. Now, I would like to fetch all documents that DO NOT exist in that array.

Lets say let array = ["id1", "id2", "id3];

and document IDs in Firestore: "id1", "id2", "id3", "id4", "id5".

So basically I need to fetch only the docs with "id4" and "id5";

I thought of using this but I am not sure how exactly:

const westCoastCities = citiesRef.where('regions', 'array-contains', 'west_coast').get();

I am new to Firebase so please be patient with me.

question from:https://stackoverflow.com/questions/65876841/how-to-fetch-all-docouments-with-an-id-that-doesnt-exist-in-the-given-array-cl

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This should work

idsRef.where('ids', 'not-in', ["id1", "id2", "id3]);

You should always check their doc first https://firebase.google.com/docs/firestore/query-data/queries#not-in


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...