Skip to content

jira issue mine

  • Usage: jira issue mine [flags]

List issues where the assignee is the current Jira user. Use it for the common personal triage view without typing --assignee me.

This command shares the issue list runner and output shape. It accepts the same filters except assignee and reporter, with assignee pinned to currentUser().

Filters

--created <DATE>

Filter by created date (same grammar as --updated)

--epic <KEY>…

Restrict to issues in epic keys

--jql <JQL>

Add custom JQL clauses (combined with assignee = currentUser())

--key <KEY>…

Restrict to issue key, comma list, or PROJ-1..PROJ-5 range

--label <NAME>…

Restrict by label

--priority <NAME>…

Restrict by priority

--project <KEY>…

Restrict to Jira project key

--resolved <DATE>

Filter by resolved date (same grammar as --updated)

--status <NAME>…

Restrict by status: name, category comparator (<Done, >=In Progress), or negation (!Abandoned)

--type <NAME>…

Restrict by issue type

--updated <DATE>

Filter by updated date: -7d, 2026-01-01, >=2026-01-01, or A..B range

Sort

--desc

Sort descending

--order-by <FIELD>

Sort field

Allowed values:

  • updated — last-updated time (default)
  • created — creation time
  • priority — priority level
  • status — workflow status
  • key — issue key
  • summary — title text

Pagination

--all

Walk every page until isLast (bounded; use --unbounded to lift the caps)

--cursor <TOKEN>

Resume from a nextCursor returned by a previous page

--limit <N>

Page size requested from Jira

Default: 50

--unbounded

With --all, lift the default 100-page / 10 000-issue caps

Output

--as-jql

Print the built JQL without calling Jira

--columns <COLS>…

Select and order columns for human/TSV output

Allowed values:

  • key — issue key
  • summary — title text
  • status — workflow status
  • assignee — assigned user
  • priority — priority level
  • updated — last-updated time

--detail

Fetch full issue records

--tsv

Render as tab-separated values for scripts (off a TTY this implies --output=human)

Examples

jira issue mine
jira issue mine --project PROJ --status '!Done' --order-by created # (1)!
jira issue mine --project PROJ --as-jql # (2)!
  1. List your open issues in a project, newest first
  2. Preview generated JQL without contacting Jira