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

    Fetches an object given its globally unique ID.

    favourites: null | FavouritesConnection

    Reads and enables pagination through a set of Favourite.

    levels: null | LevelsConnection

    Reads and enables pagination through a set of Level.

    levelItems: null | LevelItemsConnection

    Reads and enables pagination through a set of LevelItem.

    levelMetadata: null | LevelMetadataConnection

    Reads and enables pagination through a set of LevelMetadatum.

    levelPoints: null | LevelPointsConnection

    Reads and enables pagination through a set of LevelPoint.

    levelPointsHistories: null | LevelPointsHistoriesConnection

    Reads and enables pagination through a set of LevelPointsHistory.

    levelRequests: null | LevelRequestsConnection

    Reads and enables pagination through a set of LevelRequest.

    personalBestGlobals: null | PersonalBestGlobalsConnection

    Reads and enables pagination through a set of PersonalBestGlobal.

    records: null | RecordsConnection

    Reads and enables pagination through a set of Record.

    recordMedias: null | RecordMediaConnection

    Reads and enables pagination through a set of RecordMedia.

    users: null | UsersConnection

    Reads and enables pagination through a set of User.

    userPoints: null | UserPointsConnection

    Reads and enables pagination through a set of UserPoint.

    userPointsHistories: null | UserPointsHistoriesConnection

    Reads and enables pagination through a set of UserPointsHistory.

    versions: null | VersionsConnection

    Reads and enables pagination through a set of Version.

    votes: null | VotesConnection

    Reads and enables pagination through a set of Vote.

    worldRecordGlobals: null | WorldRecordGlobalsConnection

    Reads and enables pagination through a set of WorldRecordGlobal.

    zslLevels: null | ZslLevelsConnection

    Reads and enables pagination through a set of ZslLevel.

    zslLevelResults: null | ZslLevelResultsConnection

    Reads and enables pagination through a set of ZslLevelResult.

    zslPointsStructures: null | ZslPointsStructuresConnection

    Reads and enables pagination through a set of ZslPointsStructure.

    zslRounds: null | ZslRoundsConnection

    Reads and enables pagination through a set of ZslRound.

    zslRoundResults: null | ZslRoundResultsConnection

    Reads and enables pagination through a set of ZslRoundResult.

    zslSeasons: null | ZslSeasonsConnection

    Reads and enables pagination through a set of ZslSeason.

    zslSeasonResults: null | ZslSeasonResultsConnection

    Reads and enables pagination through a set of ZslSeasonResult.

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

    Retrieves filtered level items based on specified criteria.

    __typename: "Query"