Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/neo4j/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
2次提交时范围内的GraphQL查询提交历史记录_Graphql_Github Api_Github Graphql - Fatal编程技术网

2次提交时范围内的GraphQL查询提交历史记录

2次提交时范围内的GraphQL查询提交历史记录,graphql,github-api,github-graphql,Graphql,Github Api,Github Graphql,我正在尝试获取两个给定游标之间的所有提交列表 我试着用前后论证来证明历史 ref(qualifiedName: $branch) { target { ... on Commit { history(after:$firstCommit, before: $lastCommit) { totalCount 我希望它只返回这两个标记之间的提交,但它返回整个列表。这实际上似乎是GitHub上的一个历史错误,在这种特定情况下,之前的和之后的不能一起

我正在尝试获取两个给定游标之间的所有提交列表

我试着用前后论证来证明历史

ref(qualifiedName: $branch) {
   target {
     ... on Commit {
        history(after:$firstCommit, before: $lastCommit) {
          totalCount

我希望它只返回这两个标记之间的提交,但它返回整个列表。

这实际上似乎是GitHub上的一个历史错误,在这种特定情况下,之前的
和之后的
不能一起工作。这实际上似乎是GitHub上的一个历史错误,在此特定情况下,
之前的
和之后的
不起作用。