@zeepkist/graphql
    Preparing search index...

    Interface PageInfo

    Information about pagination in a connection.

    interface PageInfo {
        hasNextPage: boolean;
        hasPreviousPage: boolean;
        startCursor: any;
        endCursor: any;
        __typename: "PageInfo";
    }
    Index

    Properties

    hasNextPage: boolean

    When paginating forwards, are there more items?

    hasPreviousPage: boolean

    When paginating backwards, are there more items?

    startCursor: any

    When paginating backwards, the cursor to continue.

    endCursor: any

    When paginating forwards, the cursor to continue.

    __typename: "PageInfo"