First of all, thanks for the `--paginate` flag. Although I'd like to get one array of objects instead. Today I'm using `jq` to do the work: ```bash gh api --paginate repos/me/my-repo/pulls/5/files | jq 'reduce inputs as $i (.; . += $i)' ```