Referencing property values

say i have a page, [[page_1]] or any block, ((block_1))… say these pages or blocks have some properties, likely property_1, property_2, proterty_3…

if i have
Page_1
property_1:: value_1

Is there a way using an inline query or otherwise to reference the property value of a specific page or block…

say something like, [[page_1]].property_1 which should return value_1

The implications are huge, with some calculations and all, but for now I would just want to know how to reference property values

Hello!
You can achieve that with the help of 🏛 Full House Templates plugin.

Just use inline views feature:

{{renderer :view, c.page.props.status, :page [[project page]] }}
{{renderer :view, c.block.props.status, :block ((uuid)) }}

Also take a look at the Inline properties reference · stdword/logseq13-full-house-plugin · Discussion #34 · GitHub.

Man, this is a lifesaver… Thanks a lot mate

1 Like