> <<forEachTiddler where 'tiddler.tags.contains("A") && tiddler.data
> ("x") *OR* tiddler.data("y") '
The various clauses of fET are just bits of javascript, so you can use
the standard boolean operators:
AND = &&
OR = ||
NOT = !
with parentheses to control the order of evaluation.
Thus:
<<... where 'testA && (testB || testC)'... >>
means "A and B ... or ... A and C"
while:
<<... where 'testA && testB || testC'... >>
means "A and B ... or ... C"
enjoy,
-e