GraphQL
-
GraphQL) Mutation과 Query의 차이?GraphQL 2020. 5. 1. 08:17
Query → SELECT문에 사용한다. REST에서는 GET. Mutation → INSERT, UPDATE, DELETE 연산에 사용한다. REST에서는 POST, PUT, PATCH, DELETE. https://stackoverflow.com/questions/48003767/what-is-the-difference-between-mutation-and-query What is the difference between Mutation and Query I'm reading GraphQL documentation where Query and Mutation are described. However, there is a lack of real examples that show and/or descri..