Incoming and outgoing links to/from film-page in dataview-results

Hi guys,

I use the following dataview

\```dataview
Table director, actors, year, country, genre, recommended, want_to_see AS "want to see (0-10)", trailer_url, comments
FROM #film
WHERE want_to_see
Sort want_to_see DESC
\```

to show all my film-notes, I want to see.

In that dataview, I’d like to include two columns, in which all the incoming and outgoing links to the film-notes are shown.
How can I achiev that?

Thanks in advance,
kind regards,

Silias

Hello, Silias

Does this work?

```dataview
Table
	director, 
	actors, 
	year, 
	country, 
	genre, 
	recommended, 
	want_to_see AS "want to see (0-10)", 
	trailer_url, 
	comments,
	file.inlinks AS "In πŸ”—", 
	file.outlinks AS "Out πŸ”—"
FROM 
	#film 
WHERE 
	want_to_see
Sort 
	want_to_see
	DESC
```
2 Likes

Hi eighting,

thank you very much, yeah, that’s what I wanted!!! :slight_smile:

1 Like

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