@zeepkist/graphql
    Preparing search index...

    Interface LevelPointsHistoriesConnection

    A connection to a list of LevelPointsHistory values.

    interface LevelPointsHistoriesConnection {
        nodes: LevelPointsHistory[];
        edges: LevelPointsHistoriesEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | LevelPointsHistoryAggregates;
        groupedAggregates: null | LevelPointsHistoryAggregates[];
        __typename: "LevelPointsHistoriesConnection";
    }
    Index

    Properties

    A list of LevelPointsHistory objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | LevelPointsHistoryAggregates

    Aggregates across the matching connection (ignoring before/after/first/last/offset)

    groupedAggregates: null | LevelPointsHistoryAggregates[]

    Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)

    __typename: "LevelPointsHistoriesConnection"