Posts tagged with 'subscriptions'

Found 1 posts tagged with 'subscriptions'.

Building a GraphQL API with Node.js and Apollo Server

Tutorial August 12, 2024
javascript nodejs graphql

Testing Subscriptions

In the GraphQL Playground, you can test the subscription by running the following:

subscription {
  bookAdded {
    title
    author
  }
}

When you execute the addBook mutation, you'll see real-time updates in the subscription.

Conclusion