Skip to content

Instantly share code, notes, and snippets.

@tumainimosha
tumainimosha / page-info.ts
Last active August 29, 2023 11:02
NestJS Graphql Cursor Based pagination
import { ObjectType, Field } from "@nestjs/graphql";
@ObjectType()
export class PageInfo {
@Field({ nullable: true })
startCursor: string;
@Field({ nullable: true })
endCursor: string;