API / GraphQL Interview Questions
What are the main operations that GraphQL supports?
GraphQL supports 3 types of operations: query, mutation, and subscription. The query is used for the request, and it is a read operation, the mutation is used for write operations, and subscription is used for listening for any data changes. The server sends a notification message to the client after any data changes, if the client is subscribed to that event.
More Related questions...