~ [[Maps]]
> [!map] **[[Collections]]** | [[Perspectives]] | [[Maps by Links]] | [[Maps by Type]]
"Collection notes" display notes that link to it using the `collection` property.
These are all the collections across your ideaverse, sorted by `rank`.
```dataview
TABLE WITHOUT ID
choice(contains(collection,link("Maps")),
"🗃️ " + file.link,
file.link) as "Collections",
rank as Rank,
join(mapState) as State
WHERE
contains(collection,[[Collections]]) and
!contains(file.name, "Template")
SORT rank desc, mapState desc, file.name asc
LIMIT 111
```