in the WebConnector for JIRA it is possible to get the connection type via the "IssueAsRawXML" query, but not with the "issues" query. It's necessary for many users to get this important field and the "issues" query is here the best query to work with JIRA.
In JIRA it is possible to connect issues with each other. Therefore different connection types could be used. For example: issue1 "relates to" issue 2 or issue3 "blocks" issue4. In the data from the webconnector its possible to see which issues are linked with each other (issue1 and issue2) but the connection type (relates to) is missing.
In screenshot you see that via the webconnector with query "IssueAsRawXML" it is possible to get the "name", but with query "issues" it is not possible..
I would suggest a separate table that could look like this:
The statement that there is only one line per issue is not 100% correct. I also assumed this 😉 but I know the following case. Create a custom field of the type checkbox with multiple selections. If several options are clicked, several data records will be created for the issue with the same ID!
We could add a LinksForIssue table - my only concern is that you would then have to construct a for/next loop to run this for potentially 1000s of issues which could be slow and it's to get data which was already present in the API responses used to build the Issues table.
Would it be useful to add an 'InwardIssues' column to the existing issues table which for example concatenated together the links using a format something like:
this sounds great! It would be very useful for us to have two columns (InwardIssues & OutwardIssues) as you described. What would be the further process for this feature request?