diff --git a/services/libs/integrations/src/integrations/github/api/graphql/pullRequests.ts b/services/libs/integrations/src/integrations/github/api/graphql/pullRequests.ts index 3ca8ef9bd2..5a8da81b86 100644 --- a/services/libs/integrations/src/integrations/github/api/graphql/pullRequests.ts +++ b/services/libs/integrations/src/integrations/github/api/graphql/pullRequests.ts @@ -5,7 +5,7 @@ import BaseQuery from './baseQuery' class PullRequestsQuery extends BaseQuery { repo: Repo - constructor(repo: Repo, githubToken: string, perPage = 20) { + constructor(repo: Repo, githubToken: string, perPage = 5) { const pullRequestsQuery = `{ repository(owner: "${repo.owner}", name: "${repo.name}") { pullRequests(last: ${perPage}, \${beforeCursor}) {