Hi,
I am trying to create a filter which get all the siblings of particular tiddler, but I have quite a hard time finding how to do that.
My tiddlers are persons with a “parents” field.
I manage to get all the children like that :
<$list filter="[contains:parents<currentTiddler>]" >
<<currentTiddler>>
</$list>
And here is one of the numeros things I tried to get the siblings :
<$list
filter="[<currentTiddler>get[parents]split[ ]]:map[all[tiddlers]contains:parents<currentTiddler>]" >
<<currentTiddler>>
</$list>
The problem is that the :map operator only transform one to one.
I tried a lot of other things, but here I am lost.
Thanks for your help