I want a clean list of inlinks to my current file, without any indentation or double bullets of any kind.
Things I have tried
I use the following code:
```dataview
list without id file.inlinks
where file.name = this.file.name
But the ‘without id’ part seems to only remove the value/text of the current file.name, it doesn’t actually clean up that part of the structure of the object, therefore the list still feels like it needs to itemize “something”. How do I just solely list the inlinks without the additional layer here?
That query, @eightning, do depend on your theme to avoid bullet points. In Minimal it shows as separate lines with a table header without the bullet points, but in default mode it shows like this:
One thing which also has caugh me attention lately, is that if your vault doesn’t have unique file name, this can (very seldomly, but it can) show inlinks to the duplicate file as well.
So as a variant over your idea, you could do something like:
```dataview
TABLE WITHOUT ID inlink as "Links to current file"
FLATTEN file.inlinks as inlink
WHERE file.path = this.file.path
```