标签: graphql github-api github-graphql
我试图获取2个给定游标之间的所有提交的列表。
我尝试使用参数之前和之后的历史记录
ref(qualifiedName: $branch) { target { ... on Commit { history(after:$firstCommit, before: $lastCommit) { totalCount
我希望它只返回这两个标记之间的提交,但它返回整个列表。