FSharp.Data.GraphQL


PageInfo

Namespace: FSharp.Data.GraphQL.Relay

Record used to represent a information about single page of results to Relay. Relay uses cursor id to identify the order between the pages.

Record Fields

Record FieldDescription
EndCursor
Signature: string option

Optional cursor used to identify the end of the results.

HasNextPage
Signature: bool

Should be true, if the next page is available. False if current page is the last page of results.

HasPreviousPage
Signature: bool

Should be true, if the previous page is available. False if current page is the first page of results.

StartCursor
Signature: string option

Optional cursor used to identify begining of the results.

Fork me on GitHub