Fix regression with archive tasks display

This commit is contained in:
allegroai 2023-07-31 14:16:08 +03:00
parent 81b93e6811
commit 2263e7cc1e

View File

@ -147,7 +147,8 @@ class GetMixin(PropsMixin):
}
default_operator = Q.OR
mongo_modifiers = {
Q.AND: {True: "all", False: "not__all"},
# not_all modifier currently not supported due to the backwards compatibility
Q.AND: {True: "all", False: "nin"},
Q.OR: {True: "in", False: "nin"},
}