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 types of HTTP clients for misc uses. This is used in the organization's infrastructure.
Go to Latest
type alias PageInfoModel
import { type PageInfoModel } from "https://deno.land/x/kd_clients@v0.0.5/core/Models/GraphQLModels/PageInfoModel.ts";

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

definition: { startCursor?: string; endCursor?: string; hasNextPage: boolean; hasPreviousPage: boolean; }