Dataview Plugin - Help with internal links

Things I have tried

I have tried to change table code generated by data view plugin so internal links displayed in table show up in graph view

table without id
  ("![](" + poster + ")") as Poster,
  file.link as Title, 
  year as Year, director as Director, 
  "⭐ " + scoreImdb as "⭐ IMDB", 
  rating, genre 
from "Movies" 
where contains(status, "complete")

Changed to:

table without id
  ("![[]](" + poster + ")") as Poster,
  file.link as Title, 
  year as Year, director as Director, 
  "⭐ " + scoreImdb as "⭐ IMDB", 
  rating, genre 
from "Movies" 
where contains(status, "complete")

I just cant find anywhere information about dataview links not showing up as connections in graph view.

What I’m trying to do

Im trying to make a note (Movies.md) with movies that I have watched and those that I want to watch. I would like to see on the graph view this note (Movies.md) connected to single movies notes (samplemovie1.md, samplemovie2.md) that are listed on main note (Movies.md) .

Any idea how to make it work and why links generated by the dataview doesn’t show up in graph view?

DATA + VIEW
Dataview produce dynamic results based on the query code. These results don’t exist as raw text, they’re a temporary render.
If they aren’t “real” you can’t see them in the graph!

Thank you for explaining, it makes sense now.

I just added a link to Movies.md in each samplemovie1.md note. Now it works like I wanted.

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