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)
(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)
Reads a single Favourite
using its globally unique ID
. (live)
Reads a single Level
using its globally unique ID
. (live)
Reads a single LevelItem
using its globally unique ID
. (live)
Reads a single LevelMetadatum
using its globally unique ID
. (live)
Reads a single LevelPoint
using its globally unique ID
. (live)
Reads a single LevelPointsHistory
using its globally unique ID
. (live)
Reads a single LevelRequest
using its globally unique ID
. (live)
Reads a single PersonalBestGlobal
using its globally unique ID
. (live)
Reads a single Record
using its globally unique ID
. (live)
Reads a single RecordMedia
using its globally unique ID
. (live)
Reads a single User
using its globally unique ID
. (live)
Reads a single UserPoint
using its globally unique ID
. (live)
Reads a single UserPointsHistory
using its globally unique ID
. (live)
Reads a single Version
using its globally unique ID
. (live)
Reads a single Vote
using its globally unique ID
. (live)
Reads a single WorldRecordGlobal
using its globally unique ID
. (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.