Hello,
I have example domain:
[('one2manyfield', 'OPERATOR', [1,2])]
I want to write domain that results in records which have 'one2manyfield' with ids 1 AND 2.
Which operator should I use to achieve that?
I can do it by
[('one2manyfield', 'in', [1]), ('one2manyfield', 'in', [2])]
but I want to achieve the same result with one operator