Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kd_clients/core/Models/GraphQlModels/PageInfoModel.ts>PageInfoModel

Various HTTP clients for miscellaneous use.
Latest
interface PageInfoModel
import { type PageInfoModel } from "https://deno.land/x/kd_clients@v1.0.0-preview.13/core/Models/GraphQlModels/PageInfoModel.ts";

Holds information about a page of data when doing pagination type requests.

Properties

optional
startCursor: string

The start cursor of a single page.

optional
endCursor: string

The end cursor of a single page.

hasNextPage: boolean

True if there is a another page.

hasPreviousPage: boolean

True if there is a previous page.