如果您登录https://developer.github.com/v4/explorer/ 并运行此查询
{
search(query: "org:ruby is:pr merged:<2019-07-11", type: ISSUE, last: 5) {
edges {
node {
... on PullRequest {
url
mergedAt
commits(first: 12) {
totalCount
}
}
}
}
}
}
我可以获得在 2019-07-11 之前合并的所有 pr 我想在 2019-07-11 之前和 2019-07-04 之后合并 pr
usingquery: "org:ruby is:pr merged:<2019-07-11 and is:pr merged:>2019-07-04 "
不过滤。有没有一种优雅的方式来做到这一点?