Paginate findings and obligations 500 by 500

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-03-19 23:57:12 +01:00
parent a7319e54a1
commit f756b7273d
2 changed files with 2 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ const findingsPageFragment = graphql`
fragment FindingsPageFragment on Organization
@refetchable(queryName: "FindingsPageRefetchQuery")
@argumentDefinitions(
first: { type: "Int", defaultValue: 10 }
first: { type: "Int", defaultValue: 500 }
after: { type: "CursorKey" }
snapshotId: { type: "ID", defaultValue: null }
kind: { type: "FindingKind", defaultValue: null }

View File

@@ -60,7 +60,7 @@ const obligationsPageFragment = graphql`
fragment ObligationsPageFragment on Organization
@refetchable(queryName: "ObligationsPageRefetchQuery")
@argumentDefinitions(
first: { type: "Int", defaultValue: 10 }
first: { type: "Int", defaultValue: 500 }
after: { type: "CursorKey" }
snapshotId: { type: "ID", defaultValue: null }
) {