You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to fetch tasks from today's daily note that is formatted like this (in moment.js: dddd MMM Do Y for ex: Thursday Aug 15th 2024), when I converted that format to luxon format I got: cccc LLL d'th' yyyy
I want the task that is getting shown to have "ذِكرُ صبَاحٍ و مساءٍ يسيرْ" in it (that's arabic lettering btw)
TASK
FROM "Notes/Daily notes"
WHERE file.name = dateformat(today, "cccc LLL d'th' yyyy") AND contains(text, "ذِكرُ صبَاحٍ و مساءٍ يسيرْ")
the following query worked:
TASK
FROM "Notes/Daily notes"
WHERE file.name = "Thursday Aug 15th 2024" AND contains(text, "ذِكرُ صبَاحٍ و مساءٍ يسيرْ")
but I want to see the tasks from today's note, not the "Thursday Aug 15th 2024" note
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I want to fetch tasks from today's daily note that is formatted like this (in moment.js: dddd MMM Do Y for ex: Thursday Aug 15th 2024), when I converted that format to luxon format I got: cccc LLL d'th' yyyy
I want the task that is getting shown to have "ذِكرُ صبَاحٍ و مساءٍ يسيرْ" in it (that's arabic lettering btw)
the following query worked:
but I want to see the tasks from today's note, not the "Thursday Aug 15th 2024" note
if anyone could help I would appreciate that :)
Beta Was this translation helpful? Give feedback.
All reactions