Skip to content

Commit e57b6c0

Browse files
authored
feat(api): increase default users returned by Organization.members field (#6960)
1 parent ccb8dd8 commit e57b6c0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/perfect-dolls-rescue.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'hive': minor
3+
---
4+
5+
Increase the amount of organization users returned by default from 100 to 200.

packages/services/api/src/modules/organization/providers/organization-members.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export class OrganizationMembers {
172172
organization.id,
173173
);
174174

175-
const first = args.first ?? 100;
175+
const first = args.first ?? 200;
176176
const cursor = args.after ? decodeCreatedAtAndUUIDIdBasedCursor(args.after) : null;
177177

178178
const query = sql`

0 commit comments

Comments
 (0)