I’m trying to query the commit history of a project’s repository of certain branch with GraphQL, is this possible? And there is no related samples I can find in Gitlab docs, or did I have to use the REST API which is much more viable. I’ll be appreciated if anyone have any ideas about this problem. :handshake:
I can only query lastCommit, how to query list of commits
{
project(fullPath:"group-name/project-name"){
repository{
tree{
lastCommit{
title
}
}
}
}
}