PaginatedResponse
type PaginatedResponse<T>: {
pageInfo: {
endCursor: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor: string | null;
};
results: T[];
total: number;
};Type parameters
Type declaration
Member
Type
Description
Last updated
Was this helpful?