I am stuck onto simple problem. I have collection with docs in firestore. Each doc contains some fields and one of the fields is an array, that stores id's of all users who already seen that doc (the function is that each doc refers to a question, so that array stores id's of those, who already answered it).
In my query a need to get only those docs (questions), where the current user id is not stored in the field array.
I know that firestore provides us with func:
collection.where('usersAnswered', arrayContains: _uid).limit(1).get();
But I need the exact opposite, something like arrayNotContains. Is there some way, or what would be the best solution to this?