Compare action for Boolean type

Since variable declaration became set in stone it has been a pain to write dynamic expressions using “value is” conditions cause you have to know and write the full paths manually, and it won’t autocomplete and you don’t know when you’re making a typo.

For that reason Compare conditions became the go to for making dynamic expressions, but there is no Compare condition for booleans, which forces me to use integers 0/1(which are apparently heavier than booleans 1bit vs 32bits). And don’t get me wrong using integers is better sometimes cause it allows for a “fake” null state using 0 ( -1,0,1) but that’s almost never necessary anyway.

Can we get a Compare Boolean condition, please?

2 Likes