this post was submitted on 08 Jul 2023
2 points (100.0% liked)

Logseq

576 readers
1 users here now

Logseq is a knowledge management and collaboration platform. It focuses on privacy, longevity, and user control. It is Free Libre Open Source Software (AGPL-licensed).

Logseq offers a range of powerful tools for knowledge management, collaboration, PDF annotation, and task management with support for multiple file formats, including Markdown and Org-mode, and various features for organizing and structuring your notes.

Logseq's Whiteboard feature lets you organize your knowledge and ideas using a spatial canvas with shapes, drawings, website embeds, and connectors. You can visually group and link your notes and external media (such as videos and images), enabling visual thinkers to compose, remix, annotate, and connect content from their knowledge base and emerging thoughts in a new way.

In addition to its core features, Logseq has a growing ecosystem of plugins and themes that enable a wide range of workflows and customization options. Mobile apps are also available, providing access to most of the features of the desktop application. Whether you're a student, a professional, or anyone who values a clear and organized approach to managing your ideas and notes, Logseq is an excellent choice for anyone looking to improve their productivity and streamline their workflow.

founded 2 years ago
MODERATORS
top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 1 year ago (1 children)

Im trying to figure out how to get this to work, but can't find the right syntax. Anyone have any luck?

[–] [email protected] 3 points 1 year ago (1 children)

Assuming you tag the top of an index as [[index]]:

  1. Current page in indexes:

    {{query (and [[index]] <%current page%> (not (page <%current page%>)))}}


  1. Indexes present in the current page:

    {{query (and [[index]] (page <%current page%>))}}


  1. Notes about the current page:

    {{query (and [[Note]] <%current page%>)}}


  1. Current page as "author" of something:

    {{query (property author <%current page%>)}}

[–] [email protected] 1 points 1 year ago (1 children)

Still having some trouble. Maybe it would help if I described my use case. I have a page for each employee where I'll take notes in my 1 on 1 meetings with them. In those meetings I'd like to be able to see any open TODO or WAITING items I have with them. When I saw this post I thought I could create a page called "Current Page Open". When I open the employee page in the main area and the "Current Page Open" on the right, the right would show me the list of TODO and WAITING that reference that employee. These tasks are typically entered in the Journal with a #employee in the block, and not directly in the employee page.

[–] [email protected] 2 points 1 year ago (1 children)

Does this work in the right sidebar for you? For me it does:

{{query (and <%current page%> (todo todo doing waiting))}}

P.S. delete the word "doing" if you don't want to see the DOING tasks.

[–] [email protected] 2 points 1 year ago (1 children)

That works!! Thank you so much. I was doing (page <%Current page%>) which was throwing it off. This is a big help to my workflow.

[–] [email protected] 3 points 1 year ago

You are welcome!