Linear

by tacticlaunch
Verified

linear_getComments

Get all comments for an issue

Input Schema

NameRequiredDescriptionDefault
issueIdYesID or identifier of the issue to get comments from (e.g., ABC-123)
limitNoMaximum number of comments to return (default: 25)

Input Schema (JSON Schema)

{ "properties": { "issueId": { "description": "ID or identifier of the issue to get comments from (e.g., ABC-123)", "type": "string" }, "limit": { "description": "Maximum number of comments to return (default: 25)", "type": "number" } }, "required": [ "issueId" ], "type": "object" }