Files
twenty/packages/twenty-server/src/utils/pagination/interfaces/page-info.interface.ts
2023-12-10 18:10:54 +01:00

7 lines
129 B
TypeScript

export interface IPageInfo {
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor?: string;
endCursor?: string;
}