...
Note |
---|
Please pay attention that SQL do does not allowed allow execute all issues from Jira at once. So you need to put Issue ID or JQL query, that selects issues from a particular place (project, user, sprint, board etc) More details… |
...
Select all Issues from a particular project
Code Block language sql select * from ISSUE i where JQL='project=PROJECTNAME'
Select all Issues of a current user
Code Block language sql select * from ISSUE i Where JQL='reporter=currentUser()'
Select all Issues from an open sprintssprint
Code Block language sql select * from ISSUE i where JQL='Sprint in opensprints()'
...