Subscriptions (1/1)
What are subscriptions?
    Subscriptions in GraphQL allow clients to receive real-time updates when certain events occur on the server. They are typically used for implementing features like live notifications, chat applications, or real-time data feeds. Subscriptions use WebSocket connections to push updates to clients as soon as relevant events occur.
    Subscription fields are defined exactly as Query and Mutation fields are, but using the subscription root operation type instead: