@zeepkist/graphql
    Preparing search index...

    Interface Query

    The root query type which gives access points into the data universe.

    interface Query {
        query: Query;
        nodeId: string;
        node: Node | null;
        favourites: FavouritesConnection | null;
        levels: LevelsConnection | null;
        levelItems: LevelItemsConnection | null;
        levelMetadata: LevelMetadataConnection | null;
        levelPoints: LevelPointsConnection | null;
        levelPointsHistories: LevelPointsHistoriesConnection | null;
        levelRequests: LevelRequestsConnection | null;
        personalBestGlobals: PersonalBestGlobalsConnection | null;
        records: RecordsConnection | null;
        recordMedias: RecordMediaConnection | null;
        users: UsersConnection | null;
        userPoints: UserPointsConnection | null;
        userPointsHistories: UserPointsHistoriesConnection | null;
        versions: VersionsConnection | null;
        votes: VotesConnection | null;
        worldRecordGlobals: WorldRecordGlobalsConnection | null;
        zslLevels: ZslLevelsConnection | null;
        zslLevelResults: ZslLevelResultsConnection | null;
        zslPointsStructures: ZslPointsStructuresConnection | null;
        zslRounds: ZslRoundsConnection | null;
        zslRoundResults: ZslRoundResultsConnection | null;
        zslSeasons: ZslSeasonsConnection | null;
        zslSeasonResults: ZslSeasonResultsConnection | null;
        favourite: Favourite | null;
        favouriteByUserIdAndLevelId: Favourite | null;
        level: Level | null;
        levelByHash: Level | null;
        levelItem: LevelItem | null;
        levelMetadatum: LevelMetadatum | null;
        levelPoint: LevelPoint | null;
        levelPointsHistory: LevelPointsHistory | null;
        levelRequest: LevelRequest | null;
        personalBestGlobal: PersonalBestGlobal | null;
        personalBestGlobalByUserIdAndLevelId: PersonalBestGlobal | null;
        record: Record | null;
        recordMedia: RecordMedia | null;
        recordMediaByRecordId: RecordMedia | null;
        user: User | null;
        userPoint: UserPoint | null;
        userPointsHistory: UserPointsHistory | null;
        version: Version | null;
        vote: Vote | null;
        worldRecordGlobal: WorldRecordGlobal | null;
        worldRecordGlobalByLevelId: WorldRecordGlobal | null;
        zslLevel: ZslLevel | null;
        zslLevelResult: ZslLevelResult | null;
        zslPointsStructure: ZslPointsStructure | null;
        zslRound: ZslRound | null;
        zslRoundBySeasonIdAndRound: ZslRound | null;
        zslRoundResult: ZslRoundResult | null;
        zslSeason: ZslSeason | null;
        zslSeasonResult: ZslSeasonResult | null;
        zRtm: ZRtmConnection | null;
        __typename: "Query";
    }
    Index

    Properties

    query: Query

    Exposes the root query type nested one level down. This is helpful for Relay 1 which can only query top level fields if they are in a particular form.

    nodeId: string

    The root query type must be a Node to work well with Relay 1 mutations. This just resolves to query.

    node: Node | null

    Fetches an object given its globally unique ID.

    favourites: FavouritesConnection | null

    Reads and enables pagination through a set of Favourite.

    levels: LevelsConnection | null

    Reads and enables pagination through a set of Level.

    levelItems: LevelItemsConnection | null

    Reads and enables pagination through a set of LevelItem.

    levelMetadata: LevelMetadataConnection | null

    Reads and enables pagination through a set of LevelMetadatum.

    levelPoints: LevelPointsConnection | null

    Reads and enables pagination through a set of LevelPoint.

    levelPointsHistories: LevelPointsHistoriesConnection | null

    Reads and enables pagination through a set of LevelPointsHistory.

    levelRequests: LevelRequestsConnection | null

    Reads and enables pagination through a set of LevelRequest.

    personalBestGlobals: PersonalBestGlobalsConnection | null

    Reads and enables pagination through a set of PersonalBestGlobal.

    records: RecordsConnection | null

    Reads and enables pagination through a set of Record.

    recordMedias: RecordMediaConnection | null

    Reads and enables pagination through a set of RecordMedia.

    users: UsersConnection | null

    Reads and enables pagination through a set of User.

    userPoints: UserPointsConnection | null

    Reads and enables pagination through a set of UserPoint.

    userPointsHistories: UserPointsHistoriesConnection | null

    Reads and enables pagination through a set of UserPointsHistory.

    versions: VersionsConnection | null

    Reads and enables pagination through a set of Version.

    votes: VotesConnection | null

    Reads and enables pagination through a set of Vote.

    worldRecordGlobals: WorldRecordGlobalsConnection | null

    Reads and enables pagination through a set of WorldRecordGlobal.

    zslLevels: ZslLevelsConnection | null

    Reads and enables pagination through a set of ZslLevel.

    zslLevelResults: ZslLevelResultsConnection | null

    Reads and enables pagination through a set of ZslLevelResult.

    zslPointsStructures: ZslPointsStructuresConnection | null

    Reads and enables pagination through a set of ZslPointsStructure.

    zslRounds: ZslRoundsConnection | null

    Reads and enables pagination through a set of ZslRound.

    zslRoundResults: ZslRoundResultsConnection | null

    Reads and enables pagination through a set of ZslRoundResult.

    zslSeasons: ZslSeasonsConnection | null

    Reads and enables pagination through a set of ZslSeason.

    zslSeasonResults: ZslSeasonResultsConnection | null

    Reads and enables pagination through a set of ZslSeasonResult.

    favourite: Favourite | null
    favouriteByUserIdAndLevelId: Favourite | null
    level: Level | null
    levelByHash: Level | null
    levelItem: LevelItem | null
    levelMetadatum: LevelMetadatum | null
    levelPoint: LevelPoint | null
    levelPointsHistory: LevelPointsHistory | null
    levelRequest: LevelRequest | null
    personalBestGlobal: PersonalBestGlobal | null
    personalBestGlobalByUserIdAndLevelId: PersonalBestGlobal | null
    record: Record | null
    recordMedia: RecordMedia | null
    recordMediaByRecordId: RecordMedia | null
    user: User | null
    userPoint: UserPoint | null
    userPointsHistory: UserPointsHistory | null
    version: Version | null
    vote: Vote | null
    worldRecordGlobal: WorldRecordGlobal | null
    worldRecordGlobalByLevelId: WorldRecordGlobal | null
    zslLevel: ZslLevel | null
    zslLevelResult: ZslLevelResult | null
    zslPointsStructure: ZslPointsStructure | null
    zslRound: ZslRound | null
    zslRoundBySeasonIdAndRound: ZslRound | null
    zslRoundResult: ZslRoundResult | null
    zslSeason: ZslSeason | null
    zslSeasonResult: ZslSeasonResult | null
    zRtm: ZRtmConnection | null

    Retrieves filtered level items based on specified criteria.

    __typename: "Query"