diff --git a/components/server/ee/src/gitlab/gitlab-app-support.ts b/components/server/ee/src/gitlab/gitlab-app-support.ts index f120b15ebeac98..4691d3f825b504 100644 --- a/components/server/ee/src/gitlab/gitlab-app-support.ts +++ b/components/server/ee/src/gitlab/gitlab-app-support.ts @@ -52,7 +52,11 @@ export class GitLabAppSupport { // we are listing only those projects with access level of maintainers. // also cf. https://docs.gitlab.com/ee/api/members.html#valid-access-levels // - const projectsWithAccess = await api.Projects.all({ min_access_level: "40", perPage: 100 }); + const projectsWithAccess = await api.Projects.all({ + min_access_level: "40", + perPage: 100, + pagination: "keyset", + }); for (const project of projectsWithAccess) { const aProject = project as ProjectSchema; const path = aProject.path as string;