export interface PageInfo {
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor: string | null;
endCursor: string | null;
}
export interface Cursor {
createdAt: string;
id: string;
}
export function encodeCursor(c: Cursor): string {