@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: 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: "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: Node | null

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

    favourites: FavouritesConnection | null

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

    levels: LevelsConnection | null

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

    levelItems: LevelItemsConnection | null

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

    levelMetadata: LevelMetadataConnection | null

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

    levelPoints: LevelPointsConnection | null

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

    levelPointsHistories: LevelPointsHistoriesConnection | null

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

    levelRequests: LevelRequestsConnection | null

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

    personalBestGlobals: PersonalBestGlobalsConnection | null

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

    records: RecordsConnection | null

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

    recordMedias: RecordMediaConnection | null

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

    users: UsersConnection | null

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

    userPoints: UserPointsConnection | null

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

    userPointsHistories: UserPointsHistoriesConnection | null

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

    versions: VersionsConnection | null

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

    votes: VotesConnection | null

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

    worldRecordGlobals: WorldRecordGlobalsConnection | null

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

    zslLevels: ZslLevelsConnection | null

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

    zslLevelResults: ZslLevelResultsConnection | null

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

    zslPointsStructures: ZslPointsStructuresConnection | null

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

    zslRounds: ZslRoundsConnection | null

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

    zslRoundResults: ZslRoundResultsConnection | null

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

    zslSeasons: ZslSeasonsConnection | null

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

    zslSeasonResults: ZslSeasonResultsConnection | null

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

    favourite: Favourite | null

    (live)

    favouriteByUserIdAndLevelId: Favourite | null

    (live)

    level: Level | null

    (live)

    levelByHash: Level | null

    (live)

    levelItem: LevelItem | null

    (live)

    levelMetadatum: LevelMetadatum | null

    (live)

    levelPoint: LevelPoint | null

    (live)

    levelPointsHistory: LevelPointsHistory | null

    (live)

    levelRequest: LevelRequest | null

    (live)

    personalBestGlobal: PersonalBestGlobal | null

    (live)

    personalBestGlobalByUserIdAndLevelId: PersonalBestGlobal | null

    (live)

    record: Record | null

    (live)

    recordMedia: RecordMedia | null

    (live)

    recordMediaByRecordId: RecordMedia | null

    (live)

    user: User | null

    (live)

    userPoint: UserPoint | null

    (live)

    userPointsHistory: UserPointsHistory | null

    (live)

    version: Version | null

    (live)

    vote: Vote | null

    (live)

    worldRecordGlobal: WorldRecordGlobal | null

    (live)

    worldRecordGlobalByLevelId: WorldRecordGlobal | null

    (live)

    zslLevel: ZslLevel | null

    (live)

    zslLevelResult: ZslLevelResult | null

    (live)

    zslPointsStructure: ZslPointsStructure | null

    (live)

    zslRound: ZslRound | null

    (live)

    zslRoundBySeasonIdAndRound: ZslRound | null

    (live)

    zslRoundResult: ZslRoundResult | null

    (live)

    zslSeason: ZslSeason | null

    (live)

    zslSeasonResult: ZslSeasonResult | null

    (live)

    zRtm: ZRtmConnection | null

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

    __typename: "Subscription"