Does anyone have examples of Group By?
I’m trying to figure out if what I want is possible. Assume a folder called Recipes, with subfolders like Appetizers and Drinks (I know I always use recipes but I find they work well with examples). I’d like the list to display as follows:
Recipes/Appetizers
item 1
item 2
Recipes/Drinks
item 1
item 2
I would actually prefer to hide the “Recipes” part of the path, but that’s a different matter.
This just gives me an empty list:
```dataview
list from "Recipes"
where file.name !="_Recipes TOC"
group by file.path
```