Class: FullPaginationArgs<CursorType>
Allows forward pagination of a Relay connection type
Type parameters​
Name | Type |
---|---|
CursorType | extends Cursor = Cursor |
Implements​
Constructors​
constructor​
• new FullPaginationArgs<CursorType
>(): FullPaginationArgs
<CursorType
>
Type parameters​
Name | Type |
---|---|
CursorType | extends Cursor = Cursor |
Returns​
FullPaginationArgs
<CursorType
>
Properties​
after​
• Optional
after: CursorType
Grabs records starting from after the given cursor.
Implementation of​
Defined in​
before​
• Optional
before: CursorType
Grabs records ending before the given cursor.
Implementation of​
Defined in​
first​
• Optional
first: number
Grabs the first n records.
Implementation of​
Defined in​
last​
• Optional
last: number
Grabs the last n records.