> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List issue comments

> List a cursor-paginated page of comments on one Linear issue.

`listIssueComments` reads issue discussion, including threaded replies returned by Linear's comment filter.

```ts automations/list-linear-comments.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { listIssueComments } from "automate.ax/linear"

export default automation("List Linear comments", () => {
  onHttpRequest({ scope: "automation" })
  listIssueComments({ issueId: "ENG-123", orderBy: "createdAt", limit: 50 })
})
```

`issueId` accepts a UUID or identifier. `orderBy` is `"createdAt"` (default) or `"updatedAt"`. Common page fields are `limit` (1–50, default 50), `after`, and `includeArchived`; optional `account` defaults to the project binding.

Returns `{ comments: LinearComment[]; pageInfo: LinearPageInfo }`. Comments include body, author, issue/parent IDs, URL, and creation, update, edit, resolve, and archive dates.
