DEV Community

Marant7
Marant7

Posted on

Api Architecture Styles using GraphQL

Applications need data to function, these are in a database within a server
They have a client which is the view and a server where the data logic is.
both communicate through an API, the best known is REST

Graphql allow queries to be made on the client side, not on the server side, it is like doing sql on the frontend.

It can be integrated with multiple Backend programming languages ​​such as Javascript (Nodejs), Python, etc.

1.On the client it is a SQL-type query language.
2.The server is an execution environment, it processes the query.

THIS IS EXAMPLE

Image description

Image description

Top comments (0)