I have a tiddler that has fields named in a pattern.
TrueOrFalse01=True, TrueOrFalse02=False, TrueOrFalse03=True, TrueOrFalse04=False
I would like to check if ALL of these fields have their value set to a pre-defined value.
My approach was to try and use a filter.
I am able to filter the fields for the given pattern, but not sure how to filter further based on the value of this result.
Expected first level output/result of filter
TrueOrFalse01=True, TrueOrFalse03=True
Here are various approaches I have tried to come up with, none of them get me desired output though:
{{{ [<currentTiddler>fields[]search:title:literal[True]] }}}
{{{ [<currentTiddler>fields[]regexp[TrueOfFalseField.*\d\d]contains[True]] }}}
The contains and search filter operators seem to search the field names and not the field values.
Or is my approach wrong?