Dataview plugin Query - how to combine Tag and Backlink in single query?

Hi , I am trying to create Dataview Query to find all backlinks for a specific note which also has a Tag…
Is it possible to Query not just special Tag but also Backlink?
Thank you!!

Hi.
You need to add more information…

1 - You want to query inlinks to a specific file? For example, you want all inlinks to the file “Note A”:

```dataview
LIST
FROM [[Note A]]
```

With this you get all the links TO “Note A”.

2 - When you say “…find all backlinks for a specific note which also has a Tag…”, who has the tag? The notes linked to the specific file? If the case, for the tag “#tag1”:

```dataview
LIST
FROM [[Note A]] AND #tag1
```

Absolutely Perfect Answer - this is what I needed at 100%!
Very very very much thanks! :cowboy_hat_face:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.