PageInfo

data class PageInfo(val startCursor: String?, val endCursor: String?, val hasNextPage: Boolean, val hasPreviousPage: Boolean)

Constructors

Link copied to clipboard
constructor(startCursor: String?, endCursor: String?, hasNextPage: Boolean, hasPreviousPage: Boolean)

Properties

Link copied to clipboard

When paginating forwards, the cursor to continue.

Link copied to clipboard

When paginating forwards, are there more items?

Link copied to clipboard

When paginating backwards, are there more items?

Link copied to clipboard

When paginating backwards, the cursor to continue.