TiddlyRemember uses macros like this:
<<rememberq "20210115012652199"
"Who went with [[Frodo]] to [[Mordor]]?"
"[[Sam]]">>
Which renders like this:

As far as I know, filters like [[Mordor]backlinks[]] will not return the above example, because the links are contained within the macro syntax.
For cases where the macro is rendered on the tiddler that contains it, you can use the following hack:
<$vars lb="[[" rb="]]">
<$vars search_term={{{ [<lb>addsuffix[Mordor]addsuffix<rb>] }}}>
<<list-links filter:"[search<search_term>]">>
</$vars>
</$vars>
But what about when it's transcluded elsewhere? Are there any hacks out there to get the same effect?