Skip to main content

TypeScript shape

interface EventConnection {
  items: Event[] | null;
  cursor: string | null;
}
items
[Event]
Events for this page. See Event.
cursor
String
Cursor for the next page. May be non-null while items is empty when a selective post-fetch filter dropped every row in the page; pagination still terminates by the underlying fetch size.