Vikas Kumar
Results
1
comments of
Vikas Kumar
I was able to achieve this using: ``` new GitHubBuilder().withAppInstallationToken(token).build() .searchRepositories() .org(orgName) .q(query) .list() .withPageSize(appConfig.getGithubRepositorySearchLimit()); ``` And then instead of calling the toList on the PagedSearchIterable, I iterated the result...