Skip to content

Instantly share code, notes, and snippets.

View LucasFsc's full-sized avatar
👨‍💻
Coding

Lucas Schlemper LucasFsc

👨‍💻
Coding
View GitHub Profile
@tumainimosha
tumainimosha / page-info.ts
Last active July 10, 2024 01:20
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;