> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# EventConnection

> Paginated connection wrapping a page of events plus a cursor.

### TypeScript shape

```ts theme={null}
interface EventConnection {
  items: Event[] | null;
  cursor: string | null;
}
```

<ResponseField name="items" type="[Event]">Events for this page. See [Event](/api-reference/graphql/types/Event).</ResponseField>
<ResponseField name="cursor" type="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.</ResponseField>
