Dataview: include only files linked in frontmatter, not in file itself

What I’m trying to do

Looking for a dataview query where you only include files that reference the file where the dataview is in the frontmatter. As such it needs to exclude files that are only referenced in the body of the file. If both links (frontmatter + file body) it can be included.

Calling on a property called your-field-name returns both frontmatter and inline values. Using file.frontmatter.your-field-name returns just the ones in the frontmatter.

A quick way to ses it:

```dataview
TABLE your-field-name, file.frontmatter.your-field-name
FROM "your-folder-path"
```