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

Information about pagination in a connection.

Type declaration

  • Optional__typename?: "PageInfo"
  • OptionalendCursor?: Maybe<Scalars["String"]["output"]>

    When paginating forwards, the cursor to continue.

  • hasNextPage: Scalars["Boolean"]["output"]

    Indicates whether more edges exist following the set defined by the clients arguments.

  • hasPreviousPage: Scalars["Boolean"]["output"]

    Indicates whether more edges exist prior the set defined by the clients arguments.

  • OptionalstartCursor?: Maybe<Scalars["String"]["output"]>

    When paginating backwards, the cursor to continue.