@zeepkist/graphql
    Preparing search index...

    Interface SampledUsersConnection

    A connection to a list of SampledUser values.

    interface SampledUsersConnection {
        nodes: SampledUser[];
        edges: SampledUsersEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledUsersConnection";
    }
    Index

    Properties

    nodes: SampledUser[]

    A list of SampledUser objects.

    A list of edges which contains the SampledUser and cursor to aid in pagination.

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledUsersConnection"