export type GraphQlOffsetPagingResult = { pageInfo: { hasNextPage: boolean; hasPreviousPage: boolean; }; items: unknown[]; totalCount: number; };