-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how can i query taks done today #36
Comments
@rmGFW Try this
|
this only list done task which was create today, if task is create before today, and done today ,will not meet the condition |
Certainly, that's correct. This issue is indeed equivalent to the one mentioned (DimitryDushkin/logseq-plugin-task-check-date#10). |
@rmGFW Try This query on any block: #+BEGIN_QUERY
{
:title "Tasks completed today"
:query [
:find (pull ?b [*])
:in $ ?start ?end
:where
[?b :block/properties ?properties]
[(get ?properties :string) ?completed]
[(>= ?completed ?start)]
[(< ?completed ?end)]
]
:inputs [:today :tomorrow]
}
#+END_QUERY The properties are hidden using CSS, but they can also be hidden using config.edn. config.edn: :block-hidden-properties #{:string} Please review it to see if there are any abnormalities and let me know the results. |
# [1.11.0](v1.10.0...v1.11.0) (2023-10-25) ### Bug Fixes * **bug:** [#45](#45) If another plugin is runnig / refactor ([c837b92](c837b92)) ### Features * **Add an option:** "different order (time and date)" [#44](#44) ([7332882](7332882)) * **Add:** "open plugin settings" button ([458e450](458e450)) * **Add:** [#36](#36) plugin settings > "hidden property for queries" ([cbf37f7](cbf37f7)) * **Add:** [#43](#43) plugin settings > Omit date if same as journal ([dba3e66](dba3e66)) * **Add:** [#44](#44) plugin settings >"Before or after the content of the first line" ([dabec23](dabec23)) * plugin settings > rename property page ([78cb82a](78cb82a))
# [1.11.0](v1.10.0...v1.11.0) (2023-10-25) ### Bug Fixes * **bug:** [#45](#45) If another plugin is runnig / refactor ([c837b92](c837b92)) * **bug:** style > hidden "string" proprety ([795314f](795314f)) ### Features * **Add an option:** "different order (time and date)" [#44](#44) ([7332882](7332882)) * **Add:** "open plugin settings" button ([458e450](458e450)) * **Add:** [#36](#36) plugin settings > "hidden property for queries" ([cbf37f7](cbf37f7)) * **Add:** [#43](#43) plugin settings > Omit date if same as journal ([dba3e66](dba3e66)) * **Add:** [#44](#44) plugin settings >"Before or after the content of the first line" ([dabec23](dabec23)) * plugin settings > rename property page ([78cb82a](78cb82a))
how can i query task finished today (may create this task not in today's journal)
The text was updated successfully, but these errors were encountered: