Skip to content

Feature: Include assignee in issues read output #30

@g-click-trade

Description

@g-click-trade

Issue co-written with dear assistant Claude Code 🤖

Feature Request

Include the assignee field in issues read output.

Current Behavior

While issues create and issues update support --assignee, the issues read command does not return the assignee information.

linearis issues read ENG-123 | jq 'keys'
# Returns: branchName, comments, createdAt, description, embeds, id, 
#          identifier, labels, priority, state, subIssues, team, title, updatedAt
# Missing: assignee

Proposed Solution

Include assignee in the output:

{
  "identifier": "ENG-123",
  "title": "Fix bug",
  "assignee": {
    "id": "user-uuid",
    "name": "John Doe",
    "email": "john@example.com"
  }
}

Use Case

  • Check who is assigned to issues
  • Build reports and dashboards
  • Automation based on assignee

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions