@zeepkist/graphql
    Preparing search index...

    Interface RecordUsersByZslLevelResultManyToManyConnection

    A connection to a list of User values, with data from ZslLevelResult.

    interface RecordUsersByZslLevelResultManyToManyConnection {
        nodes: User[];
        edges: RecordUsersByZslLevelResultManyToManyEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | UserAggregates;
        groupedAggregates: null | UserAggregates[];
        __typename: "RecordUsersByZslLevelResultManyToManyConnection";
    }
    Index

    Properties

    nodes: User[]

    A list of User objects.

    A list of edges which contains the User, info from the ZslLevelResult, and the cursor to aid in pagination.

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | UserAggregates

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

    groupedAggregates: null | UserAggregates[]

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

    __typename: "RecordUsersByZslLevelResultManyToManyConnection"