Filter link results by document name

How can I configure a Link Filter based on the current documents name? Specifically, I want to show entries that begin with the current document’s name.

Here’s what I’m trying but it’s taking {doc.name} as literal:

[[“Network Configuration Item Version”,“name”,“like”, “{doc.name}%”]]

Hi @Joshua_Restivo:

Try

[["Network Configuration Item Version","name","like","eval: doc.name+'%'"]]

Hope this helps.

1 Like