Subscriptions allow GraphQL clients to observe specific events and receive updates from the server when those events occur. This supports live updates, such as websocket pushes. Subscriptions introduce several new concepts:
subscription
is an entry point to your GraphQL schema, like query
or mutation
. It is defined by your SubscriptionType
, a root-level GraphQL::Schema::Object
.
Read more in the Subscription Type guide.
After an event occurs in our application, triggers begin the update process by sending a name and payload to GraphQL.
Read more in the Triggers guide.
Besides the GraphQL component, your application must provide some subscription-related plumbing, for example:
Read more in the Implementation guide or check out the ActionCable implementation or Pusher implementation.