export type GraphQlResult = { data: { [resolverName: string]: { pageInfo: { hasNextPage: boolean; hasPreviousPage: boolean; startCursor: string; endCursor: string; }; nodes: any; }; }; };