Which API architectural style allows clients to request exactly the data they need?

  • GraphQL
  • REST
  • SOAP
  • XML-RPC
GraphQL is an API architectural style that allows clients to request precisely the data they need. With GraphQL, clients can specify the structure of the response they want, avoiding over-fetching or under-fetching of data. This flexibility in data retrieval makes GraphQL a powerful choice for applications with varying data requirements.
Add your answer
Loading...

Leave a comment

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