Hello,
I want to have a default query that list all pages with a specific value in the property “status”. I manage to create the query, it is displayed in my journal and also says “5 results” but there is no list.
This is my query :
{
:title [:h2 "Projects in progress"]
:query [:find (pull ?p [*])
:where
(page-property ?p :status "in_progress");
]
}
On project pages (i.e : “Project A”), I have a property : status:: in_progress.
Result :
Is it a problem of display ? Or should I add something to my query ?
Thank you