Let’s say I have a list of bools combined with nulls
[null,null, false,false, null,null]
When I check whether items in list == false, I get the result for all of them as true. I tried changing lacing, also played with code block, levels etc. But it’s the only result I get.
This is expected. The == node uses truthy falsy equivalence with boolean values. This means that it’s evaluating the object’s “truth-ness” or “false-ness” rather than an actual boolean value.