I have array of user IDs in my firestore collection. I want to make query in Node js to get every document that does not include some specific id
db.collection("freeMusic").where("userIds", "array-contains", "ABB56WnLNWdbWNTyItrRiQyfgCU2")
.get()
This is how I can get in which document there is specific user ID in array userIds
but how can I do in reverse?
How to query every document that doesn't include specific value in array?
NOTE: This array of userIds can have big length even more than 100