In GraphQL, when you want to get real-time data updates, you would use a ________ instead of a regular query.

  • Live Query
  • Reactive Query
  • Real-time Query
  • Subscription Query
In GraphQL, when you want to receive real-time data updates, you would use a "Subscription Query" instead of a regular query. Subscriptions allow you to subscribe to specific events or data changes and receive updates when those events occur. Regular queries are used for retrieving static data, whereas subscriptions are designed for handling real-time data streams.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *