In this page
Overview
This page lists sample CQL queries for common use cases around page update tracking. They're completely standard CQL queries, so you can use them as-is, adapt them to your own needs, or freely combine them with any other CQL field or function for more complex searches.
Query samples
Last update
Who
Contents last updated by me:
arch.event.lastUpdatedBy = currentUser()
Contents last updated by a specific user:
arch.event.lastUpdatedBy = "123abcde95673300697be2ba"
(The alphanumeric string is the user's Atlassian account ID. How to figure out?)
Contents last updated by specific users:
arch.event.lastUpdatedBy in ("123abcde95673300697be2ba", "456fabcd1238456789abcdef")
(The alphanumeric string is the user's Atlassian account ID. How to figure out?)
When
Contents not updated in the last 100 days:
arch.event.lastUpdatedOn < now("-100d")
Contents last updated before a specific date:
arch.event.lastUpdatedOn < "2026-08-01"
Contents last updated in a specific period:
arch.event.lastUpdatedOn > "2026-01-15" and arch.event.lastUpdatedOn < "2026-08-01"
Contents updated today:
arch.event.lastUpdatedOn >= startOfDay()
Questions?
Ask us any time.