Hello readers. In this tutorial, we will understand and implement the query in graphql. 1. Introduction GraphQL is an API syntax that defines how to fetch data from one or more databases. It was developed by Facebook to optimize the RESTful api calls. It is a data query and manipulation language for api’s. It is faster, simple, and easier to ...
Read More »Home »
Mutations in graphql
Hello readers. In this tutorial, we will understand and implement mutations in graphql. 1. Introduction GraphQL is an API syntax that defines how to fetch data from one or more databases. It was developed by Facebook to optimize the RESTful API calls. It is a data query and manipulation language for API’s. It is faster, simple, and easier to implement ...
Read More »Postgres and Graphql
Hello readers. In this tutorial, we will bring in the postgres (running as a Docker container) to integrate with graphql and implement the CRUD operations. The application will expose different endpoints with the help of the apollo server. 1. Introduction GraphQL is an API syntax that defines how to fetch data from one or more databases. It was developed by ...
Read More »Apollo server in express js
Hello readers. In this tutorial, we will implement the Apollo server in graphql and express js. Apollo server is an open-source graphql server and works with many nodejs http frameworks or can run its inbuilt express server. 1. Introduction GraphQL is an API syntax that defines how to fetch data from one or more databases. It was developed by Facebook ...
Read More »Express-js and graphql
Hello readers. In this tutorial, we will implement GraphQL with express-js. 1. Introduction GraphQL is an API syntax that defines how to fetch data from one or more databases. It was developed by Facebook to optimize the RESTful api calls. It is a data query and manipulation language for api’s. It is faster, simple, and easier to implement It follows ...
Read More »Nodejs and graphql
Hello readers. In this tutorial, we will implement GraphQL with nodejs and focus on creating a hello world application. 1. Introduction GraphQL is an API syntax that defines how to fetch data from one or more databases. It was developed by Facebook to optimize the RESTful API calls. It is a data query and manipulation language for API’s. It is ...
Read More »REST vs GraphQL: A Detailed Comparison
In this article, we will take a look at the most important differences between REST vs GraphQL. 1. Introduction REST and GraphQL are web services technologies that are popular. This article talks about the differences between REST and GraphQL. REST APIs are simpler compared to SOAP. REST was a defacto standard till 2011. Facebook created GraphQL for mobile applications. GraphQL ...
Read More »Spring Framework GraphQL Tutorial
GraphQL is a relatively new concept from Facebook that is billed as an alternative to REST for Web APIs. This article will give an introduction to setting up a GraphQL server using Spring Boot so that it can be added to the existing applications or it can be used in new ones. Table Of Contents 1. Introduction 1.1 Spring Framework ...
Read More »