@mnvwvnm I’d be grateful for a little help with something similar. I’m trying to use Dataview for the first time to create an aggregated list MOC within my daily notes that renders all notes created on that day only.
I have YAML with the following in various notes:
---
created: 2021-06-24
---
And have tried the following in my Daily Note but am getting an error:
```dataview
LIST
FROM ""
WHERE created = “2021-06-24”
```Dataview: Error:
-- PARSING FAILED --------------------------------------------------
1 | LIST
2 | FROM ""
> 3 | WHERE created = “2021-06-24”
| ^
4 |
Expected one of the following:
'(', 'null', boolean, date, duration, file link, negated field, number, string, variable
I’m not sure what I’m doing wrong – appreciate any advice & thoughts!