Hi there, been banging my head all day going trough dataview docs and videos but unfortunately couldn’t get a solution.
I have a page with a number of topics/strings containing inline metadata:
1.[week::1] [name::[[1.Circle of 5ths]]] [day_of_the_week::monday]
2. [week::1] [name::[[2.Minor Scales, Intervals]] ] [day_of_the_week:: monday]
3. [week:1] [name::[[3.Intervals - Consonance vs Dissonance]] ] [day_of_the_week::tuesday]
In order to create a weekly table schedule, I would like to query these on separate tables so that for table 1=week 2, table 2=week 2 so on so forth.
This is what I have so far:
TABLE WITHOUT ID week, name AS topics, day_of_the_week
FROM "04-Resources/Music Practice/Theory/00.Music Theory Dr. B Index"
WHERE contains(day_of_the_week, "monday")
From the script I get all days of the week, not just monday
If I get rid of WHERE line, I get all the strings which contain inline metadata. Clearly the issue is with the WHERE line.
Things I tried:
WHERE contains(day_of_the_week, = “monday”) and other variations to no avail.
Can anyone help?