Allow querying a page in config.edn

I want to embed a page in every daily journals, let’s call the page “workflow”. Right now, it seems I cannot achieve this by querying the page from config.edn:

I tried both but didn’t work

{:title "Workflow"
  :query [[workflow]]} 

{:title "Workflow"
  :query [["workflow"]]}

Is it possible to add support for this?

Try this now:

{:title "Workflow"
 :query (and [[workflow]])}

A fix will be included in the next release to support:

{:title "Workflow"
  :query [[workflow]]} 
1 Like

Looking forward to it :grinning: