I would like to count all issues on my gitlab project using api.
Below the command that I'm using:
curl --header "PRIVATE-TOKEN:xxxxxxx" https://gitlab.myapp.com/api/v4/groups/xx/issues?scope=all
I've also tried to replace groups with project.
We would like to bypass the pagination problem: the displayed results are always 100 (the max number).
How can we could get more than 100 ?
I would like to have as result only the total number of issue on my project.