Posted on 14/02/2019 08:09:16
Hi Imar,
That's actually a really good question.
Equal:
If right side is an Array, Equal will work in the same way as MatchAll
MatchAny:
MatchAny should work like an if, where you OR all the different expressions together
E.g. Value1 == SearchValue1 OR Value1 == SearchValue2 OR Value1 == SearchValue3
MatchAll:
MatchAny should work like an if, where you AND all the different expressions together
E.g. Value1 == SearchValue1 AND Value1 == SearchValue2 AND Value1 == SearchValue3
In:
Works just like 'MatchAny', except that 'In' only support Arrays on the right side, where MatchAny also accept non-array values.
I hope it clearifies it a bit :)
Best regards,
Steffen