Auto saved by Logseq

This commit is contained in:
WieErWill 2024-01-07 12:04:11 +01:00
parent 084dd3af22
commit ca7330d022
4 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# All Contacts # All Contacts
- {{query (page-property :type [[person]])}} - {{query (page-property type person)}}
query-properties:: [:page :tags :name :company :miniavatar] query-properties:: [:page :tags :name :company :miniavatar]
query-sort-by:: page query-sort-by:: page
query-sort-desc:: true query-sort-desc:: true

View File

@ -1,4 +1,4 @@
# Events # Events
- {{query (property type [[Event]])}} - {{query (page-property type event)}}
query-table:: true query-table:: true
query-properties:: [:page :startDate :endDate :location :category] query-properties:: [:page :startDate :endDate :location :category]

View File

@ -1,4 +1,4 @@
# Movies # Movies
- {{query (property type movie)}} - {{query (page-property type movie)}}
query-table:: true query-table:: true
query-properties:: [:page :rating :watched-on :release-year :name] query-properties:: [:page :rating :watched-on :release-year :name]

View File

@ -3,13 +3,13 @@
- Organize these by time-bound projects. Once these particular projects are complete no longer relevant to you, change the status to Completed - Organize these by time-bound projects. Once these particular projects are complete no longer relevant to you, change the status to Completed
- # all your **CURRENT** projects - # all your **CURRENT** projects
- {{query (and (page-property :type [[project]]) (page-property :status "Active"))}} - {{query (and (page-property :type project) (page-property :status "Active"))}}
- # all your **Planned** projects - # all your **Planned** projects
- {{query (and (page-property :type [[project]]) (page-property :status "Planned"))}} - {{query (and (page-property :type project) (page-property :status "Planned"))}}
- # all your **Ideas** projects - # all your **Ideas** projects
- {{query (and (page-property :type [[project]]) (page-property :status "Idea"))}} - {{query (and (page-property :type project) (page-property :status "Idea"))}}
- # all your **Completed** projects - # all your **Completed** projects
- {{query (and (page-property :type [[project]]) (page-property :status "Completed"))}} - {{query (and (page-property :type project) (page-property :status "Completed"))}}