PageInfo: {
    __typename?: "PageInfo";
    endCursor?: Maybe<Scalars["String"]>;
    hasNextPage: Scalars["Boolean"];
    hasPreviousPage: Scalars["Boolean"];
    startCursor?: Maybe<Scalars["String"]>;
}

Details regarding a page in a connnection

Type declaration

  • Optional __typename?: "PageInfo"
  • Optional endCursor?: Maybe<Scalars["String"]>

    The cursor of the last edge in this page

  • hasNextPage: Scalars["Boolean"]

    True if there is a page after this one

  • hasPreviousPage: Scalars["Boolean"]

    True if there is a page before this one

  • Optional startCursor?: Maybe<Scalars["String"]>

    The cursor of the first edge in this page

Generated using TypeDoc