我正在使用Octokit进行报告,我需要获取给定存储库的问题(使用该client.Issue.GetAllForRepository
方法并不难),但随后我需要问题' CreatedBy
,并且ClosedBy
当它适用时,但似乎这两个字段总是null
. 有没有一种方法可以在不影响每个问题的情况下获得这些。
注意:我使用的是Octokit 0.22.0
这是我的问题查询代码:
var issues = await client.Issue.GetAllForRepository(organization, repo, new RepositoryIssueRequest
{
State = ItemStateFilter.All,
});