Reputation: 21
I am using a tristate to express three different types of information. I a visual query I am able to filter the true and the false states, but i am not able to filter the state null.
Tried something like this:
Visual Query filter null value
Upvotes: 0
Views: 66
Reputation: 5638
@christian-matyas thanks for answering your own question :)
Best mark it as answered so others can find it too.
If you believe this will be needed often, best open an issue on Github.
Upvotes: 0
Reputation: 21
I found working solution :-)
First I filter all ContentItems that <Attribute> != False
and than another Filter with <Attribute> != True
which streams any ContentItem which <Attribute> == null
Upvotes: 2