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.
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.