@zeepkist/graphql
    Preparing search index...

    Interface VersionsConnection

    A connection to a list of Version values.

    interface VersionsConnection {
        nodes: Version[];
        edges: VersionsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "VersionsConnection";
    }
    Index

    Properties

    nodes: Version[]

    A list of Version objects.

    edges: VersionsEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "VersionsConnection"