in src/main/java/com/spotify/github/v3/clients/GithubPage.java [142:150]
public Iterator<T> iterator() {
return github
.request(path)
.thenApply(
response ->
github.json().fromJsonUncheckedNotNull(response.bodyString(), typeReference))
.join()
.iterator();
}