@zeepkist/graphql
    Preparing search index...

    Interface SampledRecordsConnection

    A connection to a list of SampledRecord values.

    interface SampledRecordsConnection {
        nodes: SampledRecord[];
        edges: SampledRecordsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledRecordsConnection";
    }
    Index

    Properties

    nodes: SampledRecord[]

    A list of SampledRecord objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledRecordsConnection"