Skip to content

RecentParticipantsGroup

One entity-type group on the New Records surface — paginated independently.

FieldArgsTypeDescription
items[NewParticipant!]!Page of items at the requested offset (length ≤ limit).
totalCountInt!Total number of items in this group within the window — independent of limit / offset. Drives the “X of Y” hint and tells the UI when no further Load more is possible (when offset + items.length >= totalCount). Edge case: when an over-paginated request returns zero rows (e.g. concurrent deletes since the previous page), totalCount is reported as 0 — the resolver does not issue a separate COUNT(*) in that branch because the UI’s loadMore is gated on items.length < totalCount and won’t reach this state in practice.