Skip to main content

Comments > Updated at

Tom Williams avatar
Written by Tom Williams
Updated this week

Dataset: Comments

Entity: Comments

Field ID: updated_at

Type: Datetime

Description: The datetime at which the comment was last updated.

Source: App

Transformation logic: N/A

From:

Github (Comments)

updated_at

Gitlab (Comments)

updated_at

Bitbucket (Comments)

updated_on

Azure DevOps (Comments)

lastUpdatedDate

JIRA (Comments)

updated

ClickUp (Comments)

date

Trello (Comments)

dateLastEdited

Reporting Use Cases

The Updated At field from the Comments dataset is a specialized timestamp that captures the moment a comment was last edited. Its primary use is for auditing and tracking changes in communication, helping you identify when and how discussions have evolved over time.

  • Filtering for Edited Comments: The most direct use of this field is to find comments that have been modified after their initial creation.

    • You can create a report highlighting edited comments by using a custom formula such as updated_at > created_at. This is useful for auditing purposes or for reviewing discussions where the original context may have changed.

    • You can also focus on recently edited comments to see the latest changes in a discussion, using a filter like Updated At in the previous 24 hours.

  • Analyzing Comment Evolution: By comparing the Updated At and Created At timestamps, you can measure the "time to correction" or how long it takes for comments to be revised.

    • In a list report of edited comments, you can add a custom dimension with the formula (updated_at - created_at) / HOUR() to show how many hours passed before the comment was changed. A long duration might indicate that the initial comment was left for a while before being corrected.

  • Tracking Recent Activity: Since a comment edit is a form of activity, you can use this field to find recently active discussions, although the Updated At field on the parent issue or pull request is often a more holistic measure for this purpose.

Did this answer your question?