Missing tasks on daily pages

Hello there :wave:

Can anyone help me debug why my Logseq instance doesn’t show tasks on the journal daily pages?

I believe it should show current tasks on the bottom, shouldn’t it?

This is how the daily page looks like

My global config.edn is empty.

And graph config.edn has configuration for tasks display:

I created a new empty graph, but it also doesn’t show any tasks underneath the daily page.

Any idea what might be the reason, and how to figure it out?

From what you have shared:

  • Your example task is a TODO on today’s journal.
  • Therefore it doesn’t fit in your current default queries, because they look for respectively:
    • “NOW” query for either NOW or DOING, not for TODO
      • notice line [(contains? #{"NOW" "DOING"} ?marker)]
      • to include TODO tasks, add "TODO" (separated by space) inside the curly braces
    • “LATER” query for LATER, not for TODO
      • notice line [(contains? #{"LATER"} ?marker)]
      • to include TODO tasks, add "TODO" (separated by space) inside the curly braces
    • “NEXT” query for TODO, but only after today
      • notice line [(> ?d ?start)]
      • to include tasks of today, add = to make the line [(>= ?d ?start)]
  • Don’t make all of the above changes, but only one that fits your specific needs.
1 Like

@mentaloid you got the point, thank you a lot! :heart_hands: