xray_search_test_executions
Search Test Execution issues in Jira using project key, JQL filters, and sorting. Return only specified fields for targeted visibility.
Instructions
Searches for Test Execution issues in Jira using filters. The issuetype filter is applied automatically. Use 'projectKey' to filter by project (e.g. 'OQA10'), 'jql' for additional JQL conditions (e.g. 'status = "Done"'), and 'orderBy' for sorting (e.g. 'created DESC'). Example: to find recent test executions in project OQA10, use projectKey='OQA10' and orderBy='created DESC'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jql | No | Additional JQL filter conditions to combine with the issue type. Do NOT include 'issuetype' or 'ORDER BY' here — those are handled automatically. Example: 'status = "Done" AND assignee = currentUser()' | |
| fields | No | Jira fields to include in the response, e.g. ['summary', 'status', 'assignee', 'created']. | |
| orderBy | No | JQL ORDER BY clause without the 'ORDER BY' keyword. Example: 'created DESC' to sort by creation date descending. | |
| maxResults | No | Maximum number of results to return (1-100, default 25). | |
| projectKey | No | Jira project key to filter by, e.g. 'OQA10', 'GAP', 'CALC'. |