Hi,
I'm trying to get 'fix version' of 'issuelinks' out of the response of get_issue - without modifying\using plugin or writing script (need it just by using a query - I do not have permission).
Is there a way to do it ?
example response:
"issuelinks": [
{
"id": "994485",
"outwardIssue": {
"fields": {
"issuetype": {
"description": "Created by JIRA Software - do not edit or delete. Issue type for a user story.",
"iconUrl": "https://JiraServer/images/icons/issuetypes/requirement.png",
"id": "6",
"name": "User Story",
"self": "https://JiraServer/rest/api/2/issuetype/6",
"subtask": false
},
"priority": {
"iconUrl": "https://JiraServer/images/icons/priorities/minor.svg",
"id": "6",
"name": "Medium",
"self": "https://JiraServer/rest/api/2/priority/6"
},
"status": {
"description": "",
"iconUrl": "https://JiraServer/images/icons/statuses/generic.png",
"id": "10257",
"name": "ACTIVE",
"self": "https://JiraServer/rest/api/2/status/10257",
"statusCategory": {
"colorName": "blue-gray",
"id": 2,
"key": "new",
"name": "To Do",
"self": "https://JiraServer/rest/api/2/statuscategory/2"
}
},
"summary": "SABR - Cap vol surface [Algo]"
},
"id": "1039418",
"key": "SDIR-20735",
"self": "https://JiraServer/rest/api/2/issue/1039418"
},
"self": "https://JiraServer/rest/api/2/issueLink/994485",
"type": {
"id": "10030",
"inward": "is cloned to",
"name": "Cloners",
"outward": "is a clone of",
"self": "https://JiraServer/rest/api/2/issueLinkType/10030"
}
}
]
As you see the issuelinks summary is there, but not the fix version.
So I don't want to query each of the issuelinks just to know thier fix version..
Please advice how to do so by just using query.