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

# CursorPaginationInput

> Input fields for pagination using cursors, enabling the traversal through lists of items. Supports both forward and backward pagination.

## Fields

***

<ParamField path="first" type={<>Int</>}>
  The number of items to retrieve from the start of the list.
</ParamField>

<ParamField path="last" type={<>Int</>}>
  The number of items to retrieve from the end of the list.
</ParamField>

<ParamField path="after" type={<>ID</>}>
  The cursor after which to start retrieving items.
</ParamField>

<ParamField path="before" type={<>ID</>}>
  The cursor before which to start retrieving items.
</ParamField>
