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
when getting the list of projects that a Jira user has access to (jira.listProjects()), the documentation isn't clear about using the query parameters supported by the api. For example, expand and properties.
I want to include issueTypes in the response, but limit the returned fields to issueTypes, key, and id.
Update
the params aren't supported by this library, for the method, but will support be added?
The text was updated successfully, but these errors were encountered:
We currently have it implemented against /projects which is deprecated. To address this, we should implement against /project/search and support the expand parameter. Ideally we support all parameters.
what would be the corresponding method within the library? Trying with jira.listProjects() and the above mentioned parameters are ignored, unless I'm constructing it wrong
when getting the list of projects that a Jira user has access to (
jira.listProjects()
), the documentation isn't clear about using the query parameters supported by the api. For example,expand
andproperties
.I want to include
issueTypes
in the response, but limit the returned fields toissueTypes
,key
, andid
.Update
the params aren't supported by this library, for the method, but will support be added?
The text was updated successfully, but these errors were encountered: