logseq-automatic-linker
logseq-automatic-linker copied to clipboard
automatic-linker didn't auto parse between the BEGIN_QUERY and END_QUERY lines
this is my query . and i have a page called "query" so the plugin will wrap [[]] to query automatic . so i haven't to diabled the auto parse.
#+BEGIN_QUERY
{
:title "all deadline or schedule within 21 days"
:query [:find (pull ?block [*])
:in $ ?start ?next
:where
(or
[?block :block/scheduled ?d]
[?block :block/deadline ?d]
)
[(> ?d ?start)]
[(< ?d ?next)]
]
:inputs [:today :21d-after]
}
#+END_QUERY