> [!column|flex no-title]
>> [!menu-dark-red|ttl-c] [[Obsidian TTRPG Tutorials]] / [[Plugin Tutorials]] / [[Dataview]] / [[Dataview - Basic Samples]]
> [!column|4 no-title]
>> [!menu-green-1|ttl-c] [[Getting Started]]
>
>> [!menu-green-2|ttl-c] [[Plugin Tutorials]]
>
>> [!menu-green-3|ttl-c] [[Community Supported Games]]
>
>> [!menu-green-4|ttl-c] [[Obsidian TTRPG Tutorials/Templates/Templates\|Templates]]
> [!column|3 no-title]
>> [!patreon|ttl-c] [Patreon](https://www.patreon.com/JPlunkett) ([Starter Vault](https://www.patreon.com/posts/obsidian-patreon-96801399))
>
>> [!discord|ttl-c] [Obsidian TTRPG Community Discord](https://discord.gg/CdM9UCJdwU)
>
>> [!discord|ttl-c] [Obsidian Official Discord](https://discord.gg/8AF29UBUCa)
# List Bookmarks
````
```dataview
LIST
WHERE file.starred = true
```
````
# List everything with a specific tag
````
```dataview
LIST
FROM #tag
```
````
# List everything that has a specific field property (eg campaign, npc, location)
````
```dataview
LIST
WHERE <field_name>
```
````
# List everything from a specific folder (including sub-folders)
````
```dataview
LIST
FROM "folder"
```
````
# List everything from a specific folder, grouped by sub-folders
````
```dataview
LIST rows.file.link
FROM "folder"
SORT file.name asc
GROUP by file.folder
SORT file.name asc
```
````
# List everything with a specific property, grouped by property value
````
```dataview
LIST rows.file.link
WHERE campaign
SORT file.name asc
GROUP by campaign
SORT file.name asc
```
````
# List everything excluding CLI content
````
```dataview
LIST
FROM "" AND !"3-Mechanics/CLI"
```
````
# Incoming Links
````
```dataview
LIST
FROM [[]]
```
````
# Outgoing Links
````
```dataview
LIST
FROM outgoing([[]])
```
````
# List Files that link to this file, but have no links going to that file
````
```dataview
list from [[]] and !outgoing([[]])
```
````
# List Orphan Files that have no ingoing or outgoing links, not including CLI, asset files or templates.
````
```dataview
LIST
FROM "" AND !"3-Mechanics/CLI"
WHERE !contains(file.path, "zz_") AND (length(file.inlinks) = 0 AND length(file.outlinks) = 0)
SORT file.name ASC
```
````