@zeepkist/graphql
    Preparing search index...

    Interface VersionInfosConnection

    A connection to a list of VersionInfo values.

    interface VersionInfosConnection {
        nodes: VersionInfo[];
        edges: VersionInfosEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "VersionInfosConnection";
    }
    Index

    Properties

    nodes: VersionInfo[]

    A list of VersionInfo objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "VersionInfosConnection"