Hi,
When using GraphQL API’s issueSearch() to retrieve development information devInfoDetails,
NullPointerException is raised and an error occurs.
The same error occurs even if the ticket has GitHub branch/commit information.
On the other hand, if I use issueByKey(), I can get the development information devInfoDetails normally.
Is there any way to retrieve the devInfoDetails information with issueSearch() or is there an alternative?
query GetJiraIssuesAndDevInfoByJQL($cloudId: ID!, $jql:String) {
jira{
issueSearch(cloudId:$cloudId, issueSearchInput: {jql:$jql})
@optIn(to: "JiraSpreadsheetComponent-M1")
{
totalCount
pageInfo{
hasNextPage
hasPreviousPage
endCursor
}
edges{
node{
id
issueId
key
webUrl
summary
devInfoDetails{
branches{
details{
name
}
}
commits{
details{
providerCommitId
displayCommitId
entityUrl
name
created
author{
name
}
isMergeCommit
scmRepository{
entityUrl
name
}
}
}
}
fieldsById(ids:"customfield_10064"){
edges{
node{
name
description
fieldId
id
}
}
}
resolutionDateField{
name
id
fieldId
description
}
}
}
}
}
}