Get a list of issues containing a link to a note

Hello everyone!
There are notes, there is a list of tasks on the notes, each task has a link to the note. Can I make it so that I can display a list of tasks that have a specific relationship?

This lists out only tasks that have links to the test file:

```dataview
TASK
FROM ""
WHERE outlinks AND contains(text, "[[_testingFile]]")
```

Source list …

… output with DataView query …

image

Hope it helps for further playing.

Cheers, Marko :nerd_face:

EDIT:

  1. contains() is case sensitive! For details or other options, take a look here: Functions - Dataview
  2. You can use it without square brackets, it’s just easier to filter/find files :smiley:
1 Like