OverviewWhen creating a web service application, you can choose to use REST or GraphQL as the communication mode. Both may use JSON over HTTP, but have different advantages and disadvantages. This article mainly compares GraphQL and REST to operate a product database example, comparing the differences between the two solutions when performing the same client-side operations:
RESTThe main data element of REST (Representational State Transfer) is called Resource. In this case, the resource is "Product".
curl --request POST 'http://localhost:8081/product' \
curl --request PUT 'http://localhost:8081/product/{product-id}' \
curl --request GET 'http://localhost:8081/product?size=10&page=0' {
To get a product and its orders, you typically need to first call the product list API and then call the order resource to find the related orders: curl --request GET 'localhost:8081/order?product-id=1' { In addition to the original operation of getting all products, this operation needs to be performed once for each product of interest, which creates an N+1 dependency problem. GraphQLGraphQL API operations include Queries and Mutations. Queries are responsible for obtaining data, and Mutations are used to create and update. The Schema mode of Queries and Mutations defines the possible requests and responses of the client.
curl --request POST 'http://localhost:8081/graphql' \ {
curl --request POST 'http://localhost:8081/graphql' \ {
curl --request POST 'http://localhost:8081/graphql' \ {
curl --request POST 'http://localhost:8081/graphql' \ { GraphQL AdvantagesGraphQL allows for flexible and dynamic queries:
GraphQL tends to avoid expensive operations, and you can usually get all the data you need in a single request using GraphQL. When to use RESTGraphQL is not a replacement for REST. REST might be more appropriate in the following cases:
in conclusionThe choice of using REST or GraphQL as the communication mode needs to be determined by the business scenario. The flexibility of GraphQL also determines its complexity to a certain extent. When using GraphQL, you also need to consider cache optimization at the application level and batch operation optimization to solve the N+1 problem. |
<<: Saudi scientists use sunlight instead of WiFi signals to connect to the Internet
>>: Sharing of practical experience on routing technology pitfalls, have you learned it?
edgeNAT is a Chinese VPS host established in 2019...
Preface: From telegraph to 5G communication, it i...
Currently, digital transformation is described as...
The role of the CIO has become a transformational...
[51CTO.com original article] In 2018, artificial ...
[51CTO.com original article] On July 28, Beijing ...
In December, the Software Development Cloud launc...
On March 15, 2018, the 11th Microsoft Accelerator...
[[428494]] This article is reprinted from the WeC...
When there are a plethora of industry certificati...
Almost all frameworks we use have network communi...
When I first saw the word "Numerology" ...
[[188315]] [51CTO.com original article] In the ne...
On March 23, the Chinese national football team w...
[[389300]] Not long ago, the market was hotly dis...