I need help with FLATTEN or GROUP BY, I can’t figure out how it should work.
I am trying to create a table with list of projects that has the current person in charge. The result is a table with many projects with the same names.
```dataview
table without id file.frontmatter.project as project
from "/" and !"-=meta=-/templates"
where file.frontmatter.type = "task"
where file.frontmatter.person = this.file.name
flatten file.frontmatter.project
sort file.ctime desc