@zeepkist/graphql
    Preparing search index...

    Interface ZRtmConnection

    A connection to a list of ZRtmRecord values.

    interface ZRtmConnection {
        nodes: ZRtmRecord[];
        edges: ZRtmEdge[];
        totalCount: number;
        __typename: "ZRtmConnection";
    }
    Index

    Properties

    nodes: ZRtmRecord[]

    A list of ZRtmRecord objects.

    edges: ZRtmEdge[]

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

    totalCount: number

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

    __typename: "ZRtmConnection"