```dataview
TABLE WITHOUT ID type AS "Types"
WHERE paper = "psychedelic aesthetics" AND type
FLATTEN type
GROUP BY type
```
# final
```dataview
LIST WITHOUT ID link(file.link, file.name)
FROM "everything"
WHERE paper = "psychedelic aesthetics" AND type = "final"
```
# drafts
```dataview
LIST WITHOUT ID link(file.link, file.name)
FROM "everything"
WHERE paper = "psychedelic aesthetics" AND type = "draft"
```
# ideas
```dataview
LIST WITHOUT ID link(file.link, file.name)
FROM "everything"
WHERE paper = "psychedelic aesthetics" AND type = "idea"
```
# llm text
```dataview
LIST WITHOUT ID link(file.link, file.name)
FROM "everything"
WHERE paper = "psychedelic aesthetics" AND type = "llm"
```
# quotes
```dataview
LIST WITHOUT ID link(file.link, file.name)
FROM "everything"
WHERE paper = "psychedelic aesthetics" AND type = "quote"
```