What I’m trying to do
I have this data view
TABLE WITHOUT ID
Reference AS "Reference",
join(rows.file.link, ", ") AS "Note Link",
join(rows.aliases, "<br><br>") AS "Aliases"
FROM ""
WHERE contains(file.folder, this.file.folder)
FLATTEN references AS Reference
GROUP BY Reference
but files with YAML
creationdate: 2024-01-08
aliases:
- Definition of Art
references: This is what there is: [ ] not a check box
tags:
status:
are excluded by the output.
How can I include them?
Thanks