OBJECT

JourneysPage

Represents a paginated list of journeys.

link GraphQL Schema definition

1type JourneysPage {
2
3# List of journey items.
4items: [Journey]
5
6# Pagination information for the journeys.
7pageInfo: PageInfo
8
9}