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
I was trying to finally check #18, but I encountered a new issue.
As far as I can see, the request contains fields(id,projectCustomField(canBeEmpty,emptyFieldT... and if I run the same request I do get a "fields" property with everything I need.
However, this package (at least when using youtrack.issues.search(project: ${shortName} ) seems to return only the following properties:
Mind that I'm using youtrack.issues.search because this endpoint is not supported by this package.
youtrack.issues.byId works just fine, but I can't use it because I need to retrieve all the issues of a search query.
And I can't call youtrack.issues.byId for every result of youtrack.issues.search(project: ${shortName} ) because that would be insane.
The text was updated successfully, but these errors were encountered:
- Added `searchIssues` method to `IssueEndpoint` to query issues with pagination options.
- Custom fields are included included as part of the object.
- Updated tests to cover the new `searchIssues` method.
Fixesshanehofstetter#19.
I was trying to finally check #18, but I encountered a new issue.
As far as I can see, the request contains
fields(id,projectCustomField(canBeEmpty,emptyFieldT...
and if I run the same request I do get a "fields" property with everything I need.However, this package (at least when using
youtrack.issues.search(
project: ${shortName})
seems to return only the following properties:Mind that I'm using
youtrack.issues.search
because this endpoint is not supported by this package.youtrack.issues.byId
works just fine, but I can't use it because I need to retrieve all the issues of a search query.And I can't call
youtrack.issues.byId
for every result ofyoutrack.issues.search(
project: ${shortName})
because that would be insane.The text was updated successfully, but these errors were encountered: