What I’m trying to do
Since the new update with the Properties:
The notes created after the new update cannot be queried to create dataview
tables or lists:
LIST type
WHERE projects = "Testing"
results in:
Now if I query tags in notes created prior to the update:
LIST type
WHERE projects = "Almanac"
I get a proper query
Things I have tried
I searched everywhere for a solution to this but I simply cannot find it.
When I look at the raw .md files, they are slightly different:
---
tags: Research Talks
projects: Almanac
type: abstract
status: draft
date_created: 2023-01-11 - 08:45
---
this one works, while this one below doesn’t:
---
tags:
- Projects
- Research
- Stockholm-University
projects:
- Testing
type: Project
status: ongoing
date_created: 2023-06-05 - 13:38
---
However, since the new update, all the properties added have this second format which doesn’t seem to work with dataview as it used to.
Does anyone know how to update the query in dataview
to, for example, create a list of files where the project
property is a certain value?
I also changed the type of property of projects
to just text and still the query fails.
Thanks!