I am using Octokit to make a report and I need to get the issues of a given repository (which is not hard using the client.Issue.GetAllForRepository
method) but then I need the issues' CreatedBy
, and ClosedBy
when it applies, however it seems both fields are always null
. Is there a way to get those without making a hit for every issue.
Note: I'm using Octokit 0.22.0
Here is my issue querying code:
var issues = await client.Issue.GetAllForRepository(organization, repo, new RepositoryIssueRequest
{
State = ItemStateFilter.All,
});