@zeepkist/graphql
    Preparing search index...

    Interface SampledVersionsConnection

    A connection to a list of SampledVersion values.

    interface SampledVersionsConnection {
        nodes: SampledVersion[];
        edges: SampledVersionsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledVersionsConnection";
    }
    Index

    Properties

    A list of SampledVersion objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledVersionsConnection"