Skip to main content

ContactPage

A page of contacts together with pagination metadata.

Returned by *Paged query fields such as Event.contactsPaged. Use items for the contacts on the current page and pageInfo to drive pagination UI (total count, has-next-page, etc.).

type ContactPage {
items: [Contact!]!
pageInfo: OffsetPageInfo!
}

Fields

ContactPage.items ● [Contact!]! non-null object

The contacts on this page, in the same order they would be returned by the equivalent contacts field with the same offset, limit and filter arguments.

ContactPage.pageInfo ● OffsetPageInfo! non-null object

Pagination metadata for this page.

Member Of

Event object