I am trying to get list of all commits between 2 given cursors.
I have tried to use before and after argument for history
ref(qualifiedName: $branch) {
target {
... on Commit {
history(after:$firstCommit, before: $lastCommit) {
totalCount
I want it to return just commits between these 2 tags, but it returns whole list.