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)
The root query type must be a Node
to work well with Relay 1 mutations. This just resolves to query
. (live)
Fetches an object given its globally unique ID
. (live)
Reads and enables pagination through a set of Favourite
. (live)
Reads and enables pagination through a set of Level
. (live)
Reads and enables pagination through a set of LevelItem
. (live)
Reads and enables pagination through a set of LevelMetadatum
. (live)
Reads and enables pagination through a set of LevelPoint
. (live)
Reads and enables pagination through a set of LevelPointsHistory
. (live)
Reads and enables pagination through a set of LevelRequest
. (live)
Reads and enables pagination through a set of PersonalBestGlobal
. (live)
Reads and enables pagination through a set of Record
. (live)
Reads and enables pagination through a set of RecordMedia
. (live)
Reads and enables pagination through a set of User
. (live)
Reads and enables pagination through a set of UserPoint
. (live)
Reads and enables pagination through a set of UserPointsHistory
. (live)
Reads and enables pagination through a set of Version
. (live)
Reads and enables pagination through a set of Vote
. (live)
Reads and enables pagination through a set of WorldRecordGlobal
. (live)
Reads and enables pagination through a set of ZslLevel
. (live)
Reads and enables pagination through a set of ZslLevelResult
. (live)
Reads and enables pagination through a set of ZslPointsStructure
. (live)
Reads and enables pagination through a set of ZslRound
. (live)
Reads and enables pagination through a set of ZslRoundResult
. (live)
Reads and enables pagination through a set of ZslSeason
. (live)
Reads and enables pagination through a set of ZslSeasonResult
. (live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
(live)
Retrieves filtered level items based on specified criteria. (live)
The root subscription type: contains events and live queries you can subscribe to with the
subscription
operation.Live Queries
Live query fields are differentiated by containing
(live)
at the end of their description, they are added for each field in theQuery
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.
Events
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.