@zeepkist/graphql
    Preparing search index...

    Interface RecordUsersByPersonalBestGlobalManyToManyConnection

    A connection to a list of User values, with data from PersonalBestGlobal.

    interface RecordUsersByPersonalBestGlobalManyToManyConnection {
        nodes: User[];
        edges: RecordUsersByPersonalBestGlobalManyToManyEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "RecordUsersByPersonalBestGlobalManyToManyConnection";
    }
    Index

    Properties

    nodes: User[]

    A list of User objects.

    A list of edges which contains the User, info from the PersonalBestGlobal, and the cursor to aid in pagination.

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

    The count of all User you could get from the connection.

    __typename: "RecordUsersByPersonalBestGlobalManyToManyConnection"