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