Hello,
I am attempting to list all tiddlers with a tag of “BK/Object/Topic” and then want to be able to select one or more, and have all tiddlers that have a link to the selected tiddlers display in a separate tiddler.
I am not sure what I am doing wrong, so would appreciate any assistance!
<$button>
Filter Links
<$action-setfield $filter1="[all[shadows+tiddlers]tag[filter]]" $filter2="backlinks[] +[all[shadows+tiddlers]tag[filter]]" $filter3="field:title<<filter1>>" filter=""/>
</$button>
<$list filter='[all[shadows+tiddlers]tag[filter]]' variable=LinksOne>
<$link>''{{!!title}}<br>
''</$link>
</$list>
<$list filter='[all[shadows+tiddlers]tag[filter]]' variable=LinksTwo>
<$list filter='[BK/Object/Topic[]tags[]intersect<LinksOne>backlinks[]]'>
<$link>''{{!!title}}<br>
''</$link>
</$list>
</$list>```