You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's not possible currently. But you can use info from below to make it possible if you'd like to send a PR.
According to JIRA REST API Documentation this can be done via expand parameter of search API call (value of expand parameter is comma-separated list):
renderedFields - Returns field values rendered in HTML format.
names - Returns the display name of each field.
schema - Returns the schema describing a field type.
transitions - Returns all possible transitions for the issue.
operations - Returns all possible operations for the issue.
editmeta - Returns information about how each field can be edited.
changelog - Returns a list of recent updates to an issue, sorted by date, starting from the most recent.
versionedRepresentations - Instead of fields, returns versionedRepresentations a JSON array containing each version of a field's value, with the highest numbered item representing the most recent version.
TODO:
the \chobie\Jira\Api::search method must support $expand parameter as \chobie\Jira\Api::getIssue does currently
the \chobie\Jira\Issues\Walker::push method must accept optional $expand parameter as well and store into new $expand property
the \chobie\Jira\Issues\Walker::valid method must supply $expand property value to \chobie\Jira\Api::search method call
make sure no BC breaks are introduced (e.g. if nothing was expanded before, then after code changes it will start to auto-expand)
How can I retrieve the expandedInformation per issue (e.g. changelog) via
$walker->push($some _jql);
Thanks in advance for a hint.
The text was updated successfully, but these errors were encountered: