example:
key in (ISSUE-2, ISSUE-1, ISSUE-3)
will get me an output of:
while i would like the results to be sorted this way:
is there anything i can use to do that while using JIRA for Cloud?
UPDATE:
As for the reason i'd like the 'key' to be in the order i've dictated:
My original need was to have the ability to sort my results by
- "Epic link1"
- "Epic link2"
- "Epic link3"
After I've exhausted all my googling efforts in search for a solution I've reached the point where I thought about the following steps:
... ORDER BY "Epic Link"
Include 'key' and 'subtasks' filed as a column and export the results.
The output gave me the sorting order I desired by stringing the key followed by it's subtasks
Now I have an array of keys in the right sorting order.
I presume I could add an extra field to each of these issues and sort by it but that won't give me the dynamic I need since it changes everyday.
Any thought?