backlog_get_comments
Retrieve comments for a Backlog issue, including author, date, content, and field changes. Use minId/maxId to paginate through results.
Instructions
Fetch comments for a Backlog issue.
Returns each comment with: author, date, text content, and field changes (changelog) showing what fields were modified in that activity entry.
PAGINATION: Use minId/maxId to page through comments:
For next page (desc order): use maxId = (lowest comment ID from previous page - 1)
For next page (asc order): use minId = (highest comment ID from previous page + 1)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueIdOrKey | Yes | Backlog issue key (e.g. BLG-123) or numeric issue ID | |
| count | No | Number of comments to return (1–100, default 20) | |
| order | No | asc = oldest first, desc = newest first (default) | desc |
| minId | No | Return comments with ID >= minId | |
| maxId | No | Return comments with ID <= maxId |