Hi,
I'm trying to find a way to specifically check whether the current tiddler has a list field with no value.
I've found this in the documentation but the below filter does not seem to return any relevant tiddlers:
<$list filter="[<currentTiddler>has:list[emptyfield]]">
I'm not quite sure whether
emptyfield itself is a valid operator or just a placeholder.
I've also tried the below filter but I guess that this filter works on the assumption that the list must exist and it's only assumed to exist if there's a value assigned to it:
<$list filter="[<currentTiddler>list[]]">
So, again no luck.
Is there a way to denote the state of emptiness in a filter? :) Or perhaps there's a better way of solving this without resorting to macro substitution too much? (I've tried that successfully with emptyValue but it overcomplicates things a bit).
Thanks in advance!