Improved
New user activity logs
April 17th, 2026
🏷️ API version:
2026-07
You can now query a user's activity log events directly from the users query. The new activity_logs field returns a paginated list of events with cursor-based pagination, filterable by board and event type.
Query
users { activity_logs }— retrieve a user's activity log events as aUserActivityLogsPagewith cursor pagination
query {
users(ids: [1234567890]) {
id
activity_logs(
from: "2026-03-01T00:00:00Z"
to: "2026-04-09T23:59:59Z"
limit: 50
) {
cursor
logs {
id
event
entity
data
user_id
created_at
}
}
}
}