Idea behind GraphQL
The idea behind GraphQL is to introduce super flexible way of fetching (and modifying) data. How does API look like? The API looks more like a schema. For example: How do I query/mutate data? You can take what you need (no need for taking full users data): You can query a specific user: You can …