Skip to content

Instantly share code, notes, and snippets.

View tawanorg's full-sized avatar
🚩
In building

Tawan tawanorg

🚩
In building
View GitHub Profile
@tawanorg
tawanorg / page-info.ts
Created January 31, 2023 07:44 — forked from tumainimosha/page-info.ts
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;