EventSubscriptionConnection
Version 2024-04-01
Overview
Relay’s support for pagination relies on the GraphQL server exposing connections in a standardized way. In the query, the connection model provides a standard mechanism for slicing and paginating the result set. In the response, the connection model provides a standard way of providing cursors, and a way of telling the client when more results are available.
See https://relay.dev/graphql/connections.htm
Fields
Field | Description |
---|---|
edges ([EventSubscriptionEdge] required) | List of EventSubscriptionEdge that match the query criteria in the request. |
pageInfo (PageInfo required) | Provides pagination information for the query so that the details can be used on subsequent requests. |
totalCount (Int required) | Total number of results available for the query criteria in the request. |
Updated about 2 months ago