@zeepkist/graphql
    Preparing search index...

    Interface Subscription

    The root subscription type: contains events and live queries you can subscribe to with the subscription operation.

    Live query fields are differentiated by containing (live) at the end of their description, they are added for each field in the Query type. When you subscribe to a live query field, the selection set will be evaluated and sent to the client, and then most things* that would cause the output of the selection set to change will trigger the selection set to be re-evaluated and the results to be re-sent to the client.

    (* Not everything: typically only changes to persisted data referenced by the query are detected, not computed fields.)

    Live queries can be very expensive, so try and keep them small and focussed.

    Event fields will run their selection set when, and only when, the specified server-side event occurs. This makes them a lot more efficient than Live Queries, but it is still recommended that you keep payloads fairly small.

    interface Subscription {
        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: "Subscription";
    }
    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. (live)

    nodeId: string

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

    node: null | Node

    Fetches an object given its globally unique ID. (live)

    favourites: null | FavouritesConnection

    Reads and enables pagination through a set of Favourite. (live)

    levels: null | LevelsConnection

    Reads and enables pagination through a set of Level. (live)

    levelItems: null | LevelItemsConnection

    Reads and enables pagination through a set of LevelItem. (live)

    levelMetadata: null | LevelMetadataConnection

    Reads and enables pagination through a set of LevelMetadatum. (live)

    levelPoints: null | LevelPointsConnection

    Reads and enables pagination through a set of LevelPoint. (live)

    levelPointsHistories: null | LevelPointsHistoriesConnection

    Reads and enables pagination through a set of LevelPointsHistory. (live)

    levelRequests: null | LevelRequestsConnection

    Reads and enables pagination through a set of LevelRequest. (live)

    personalBestGlobals: null | PersonalBestGlobalsConnection

    Reads and enables pagination through a set of PersonalBestGlobal. (live)

    records: null | RecordsConnection

    Reads and enables pagination through a set of Record. (live)

    recordMedias: null | RecordMediaConnection

    Reads and enables pagination through a set of RecordMedia. (live)

    users: null | UsersConnection

    Reads and enables pagination through a set of User. (live)

    userPoints: null | UserPointsConnection

    Reads and enables pagination through a set of UserPoint. (live)

    userPointsHistories: null | UserPointsHistoriesConnection

    Reads and enables pagination through a set of UserPointsHistory. (live)

    versions: null | VersionsConnection

    Reads and enables pagination through a set of Version. (live)

    votes: null | VotesConnection

    Reads and enables pagination through a set of Vote. (live)

    worldRecordGlobals: null | WorldRecordGlobalsConnection

    Reads and enables pagination through a set of WorldRecordGlobal. (live)

    zslLevels: null | ZslLevelsConnection

    Reads and enables pagination through a set of ZslLevel. (live)

    zslLevelResults: null | ZslLevelResultsConnection

    Reads and enables pagination through a set of ZslLevelResult. (live)

    zslPointsStructures: null | ZslPointsStructuresConnection

    Reads and enables pagination through a set of ZslPointsStructure. (live)

    zslRounds: null | ZslRoundsConnection

    Reads and enables pagination through a set of ZslRound. (live)

    zslRoundResults: null | ZslRoundResultsConnection

    Reads and enables pagination through a set of ZslRoundResult. (live)

    zslSeasons: null | ZslSeasonsConnection

    Reads and enables pagination through a set of ZslSeason. (live)

    zslSeasonResults: null | ZslSeasonResultsConnection

    Reads and enables pagination through a set of ZslSeasonResult. (live)

    favourite: null | Favourite

    (live)

    favouriteByUserIdAndLevelId: null | Favourite

    (live)

    level: null | Level

    (live)

    levelByHash: null | Level

    (live)

    levelItem: null | LevelItem

    (live)

    levelMetadatum: null | LevelMetadatum

    (live)

    levelPoint: null | LevelPoint

    (live)

    levelPointsHistory: null | LevelPointsHistory

    (live)

    levelRequest: null | LevelRequest

    (live)

    personalBestGlobal: null | PersonalBestGlobal

    (live)

    personalBestGlobalByUserIdAndLevelId: null | PersonalBestGlobal

    (live)

    record: null | Record

    (live)

    recordMedia: null | RecordMedia

    (live)

    recordMediaByRecordId: null | RecordMedia

    (live)

    user: null | User

    (live)

    userPoint: null | UserPoint

    (live)

    userPointsHistory: null | UserPointsHistory

    (live)

    version: null | Version

    (live)

    vote: null | Vote

    (live)

    worldRecordGlobal: null | WorldRecordGlobal

    (live)

    worldRecordGlobalByLevelId: null | WorldRecordGlobal

    (live)

    zslLevel: null | ZslLevel

    (live)

    zslLevelResult: null | ZslLevelResult

    (live)

    zslPointsStructure: null | ZslPointsStructure

    (live)

    zslRound: null | ZslRound

    (live)

    zslRoundBySeasonIdAndRound: null | ZslRound

    (live)

    zslRoundResult: null | ZslRoundResult

    (live)

    zslSeason: null | ZslSeason

    (live)

    zslSeasonResult: null | ZslSeasonResult

    (live)

    zRtm: null | ZRtmConnection

    Retrieves filtered level items based on specified criteria. (live)

    __typename: "Subscription"