jira-client
jira-client copied to clipboard
JQL expand not working
Hello,
When using postman I can use the following request : /search?jql=project=myProject&expand=changelog. This returns me all issues of the project with the changelog.
But when using the jira-client using with : .searchIssues("project=myProject&expand=changelog"), it returns an exception. Any fix for this?
searchIssues has overloaded implementation, which accepts expandFields (the third argument):
jira.searchIssues("project=myProject", null, "changelog.fields");