Fix regression issue with archive tasks display

This commit is contained in:
allegroai 2023-11-17 09:35:55 +02:00
parent d62ecb5e6e
commit 388dd1b01f

View File

@ -148,7 +148,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"},
}