---
urn: "urn:penemure:ba261586-817e-42a8-a279-946b74f35af4"
backend: "pub"
ancestors:
- 📁 Penemure
created: 2025-02-08 17:02:15.291993+00:00
updated: 2025-02-08 17:02:15.291994+00:00
tags:
milestone: "2.0"
progress: "IDFK"
tags: "#log"
---
# 📁 Note Logs
We need to track when changes happen to notes in a more user-visible way, like how github does with 'tag added, tag removed' entries.
This should be attached to each note as a Log.
The structure of that log message is TBD.
I can see having entries like:
- reference added
- reference removed - but do we need these? github doesn't show them?
the main things we want to do with this data is:
- show a 'changelog' of sorts (not the edits! just, meta changes)
- identify which things a thing references, so we can show that on those pages.
- what links here / mentions this page
- build a pretty network image.
```query-cards
GROUP SELECT
urn,
title_plain AS title,
SUBSTRING(blurb, 1, 40) AS blurb,
type
FROM __all__
WHERE
parents LIKE '%SELF%'
GROUP BY
type
ORDER BY
type DESC,
title_plain ASC
```
urn | title | blurb | type
--- | ----- | ----- | ----
urn:penemure:a9d4275a-656d-4265-b886-dcc5dcb9f8cd | 📝 select tasks which changed from any State to completed within a specific time period | ## User Stories
- I want to be able t | task
{: Title="task"}