sawhney17 / logseq-automatic-linker

MIT License
87 stars 16 forks source link

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

Closed umrwifi closed 4 months ago

umrwifi commented 1 year ago

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