I think I found a way. Would you like to try?
# Test Dataview Inline Links
field1:: [[link1]], [[link2]]
field2:: #testtag
field3:: a, b
`=this.field1`
`=this.field3`
Does _not_ work:
```dataview
table field1 from ""
where contains(field1, "[[link1]]")
```
**Works:**
```dataview
table field1 from ""
where contains(field1, [[link1]])
```
Be warned that if anything else is on the links line, like an external link
field1:: [[link1]], [[link2]], [External](https://example.com/)
or anything else
field1:: [[link1]], [[link2]], abc
the whole construct breaks and the top dataview starts working, while the lower one fails. So quite a shaky solution …