logseq-automatic-linker icon indicating copy to clipboard operation
logseq-automatic-linker copied to clipboard

automatic-linker didn't auto parse between the BEGIN_QUERY and END_QUERY lines

Open umrwifi opened this issue 3 years ago • 0 comments

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

umrwifi avatar Sep 17 '22 10:09 umrwifi