export interface PageInfo { __typename: "PageInfo"; /** * When paginating forwards, the cursor to continue. */ endCursor: string | null; /** * When paginating forwards, are there more items? */ hasNextPage: boolean; }