jira search saved¶
- Usage:
jira search saved NAME [flags]
Load a named query from the configured queries file and run it against Jira. Use it for team or personal searches that are too long to keep in shell history.
The saved command uses the same output field selectors as inline search, but does not implement --count or full pagination controls.
Output¶
--fields <FIELD>…¶
Narrow each issue to these fields, comma-separated [example: summary,status,assignee]
--full¶
Request Jira's full issue payload (*all fields)
--web¶
Open the query in a browser instead of printing results
Output fields¶
With --output json, the response envelope's data object carries these fields. Run jira agent schema for the full machine-readable schema.
| Field | Type | Description |
|---|---|---|
description |
string | |
issues |
||
jql |
string | |
key |
string | |
name |
string | |
project |
string | |
source |
string |
Examples¶
jira search saved my-open-bugs
jira search saved my-open-bugs --fields summary,status # (1)!
jira search saved my-open-bugs --output=json # (2)!
- Run a saved query and select only the fields you need
- Keep saved-query results parseable