I'm trying to get all the issues (both open and closed sans pull requests) into a .json file from the Jabref repository. So far from other questions, I know that I need to set the status to all and modify the pagination. This is what I have so far:
curl -o issuesAll.json https://api.github.com/repos/JabRef/jabref/issues?per_page=100&state=all
But all that does is give me 100 open issues with pull requests. I tried looking at the Github API v3 documentation, but I just got confused. Is there a way to get all the issues into one file with only one command? Pagination seems to imply that I need to do one call for each page of results (since max number per page is 100)?