EventNotePage
A page of event-scoped notes together with pagination metadata.
Returned by *Paged query fields such as Event.notesPaged and Contact.notesPaged. Use items
for the notes on the current page and pageInfo to drive pagination UI (total count,
has-next-page, etc.).
type EventNotePage {
items: [EventNote!]!
pageInfo: OffsetPageInfo!
}
Fields
EventNotePage.items ● [EventNote!]! non-null object
The notes on this page, in the same order they would be returned by the equivalent notes field
with the same offset, limit and filter arguments.
EventNotePage.pageInfo ● OffsetPageInfo! non-null object
Pagination metadata for this page.
Member Of
Contact object ● Event object ● EventNoteType object