# Dataview - [Github](https://github.com/blacksmithgu/obsidian-dataview) - [Reference](https://blacksmithgu.github.io/obsidian-dataview/) - [List of implicit fields](https://blacksmithgu.github.io/obsidian-dataview/data-annotation/) - [Community Talk](https://publish.obsidian.md/hub/04+-+Guides%2C+Workflows%2C+%26+Courses/Community+Talks/YT+-+An+Introduction+to+Dataview) - [Readable version](https://publish.obsidian.md/hub/04+-+Guides%2C+Workflows%2C+%26+Courses/Guides/An+Introduction+to+Dataview) - [Dataview Snippet Showcase](https://forum.obsidian.md/t/dataview-plugin-snippet-showcase/13673) - [Example Vault](https://github.com/s-blu/obsidian_dataview_example_vault/) - [Basic Dataview Query Builder](https://s-blu.github.io/basic-dataview-query-builder/) https://vickychow.bandcamp.com/album/philip-glass-piano-etudes-book-1 ```dataview table length(file.inlinks) as "Link Count" from "203 Genres" sort length(file.inlinks) DESC ``` | Genre | Link Count | |------------------------|------------| | electronic | 202 | | experimental | 165 | | alternative | 141 | | jazz | 101 | | hip-hop | 100 | | rock | 96 | | folk | 83 | | pop | 82 | | ambient | 78 | | rap | 74 | | indie | 65 | | classical | 59 | | indie rock | 54 | | soul | 52 | | singer-songwriter | 42 | | alternative rock | 40 | | indie pop | 40 | | psychedelic | 36 | | drone | 34 | | contemporary classical | 31 | | noise | 28 | | house | 27 | | avant-garde | 25 | | electronica | 25 | | indie folk | 25 | | punk | 25 | | soundtrack | 25 | | dance | 24 | | r&b | 24 | | techno | 24 | | free jazz | 23 | | electroacoustic | 21 | | deep house | 20 | | dream pop | 20 | | experimental pop | 20 | | post-punk | 20 | ```datavie table file.outlinks from "205 New Music Listening Notes" ``` ```datavie table file.inlinks AS "Linked From" from "203 Genres" ``` ``` table file.lists from "202 Albums" ``` ``` table file.aliases, file.tags from [[jazz]] where file.folder="202 Albums" ```