Skip to main content

SurveyPage

A page of surveys together with pagination metadata.

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

type SurveyPage {
items: [Survey!]!
pageInfo: OffsetPageInfo!
}

Fields

SurveyPage.items ● [Survey!]! non-null object

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

SurveyPage.pageInfo ● OffsetPageInfo! non-null object

Pagination metadata for this page.

Member Of

Event object