Creating a query to use with db folder

I’m trying to create a query that show all files that have a link to a file call “tools”. The query will be in a third page.

I create the following query

TABLE
FROM "computer"
where contains(file.inlinks, "[[tools]]")

and

TABLE
FROM "computer"
where file.inlinks = "[[tools]]"

both show no results.
Any other option?