HomePosts Tagged "graphql"
Posted in Magento

Speed Optimization in Magento 2: The steps to be followed

In the era of digitalization various e commerce CMSs (Content Management System) are marking their presence noticeable. Magento, WooCommerce, Shopify, etc are among the most common platform used by development teams. Magento is undoubtedly the most popular and widely used E commercecustom made baseball jerseys sengetøj dinosaure shampoo fest zilveren heren ring Belgium zástera pre […]

Posted in Magento

Are you ready to switch from Magento 1.9 to Magento 2.0? Things you need to know

Magento, a leading open source e commerce platform that is written in PHP language. Magento is convenient for Magento development teams because of its flexibility and customization properties. It empowers retailers, brands, developers by providing highly flexible cloud solutions. It provides control over the content and functionalities of the online store to the developeryellow cab […]

Posted in Back-End & Database, GraphQL

GraphQL Fragments

Fragments is also a very important concept in GraphQL. This is used to group re-usable code together. To get a basic understanding about this, read the below blog post its very simple and easy to understand https://medium.com/graphql-mastery/graphql-fragments-and-how-to-use-them-8ee30b44f59e Let’s see how we can us it in our todo application. In our app all queries, mutations are […]

Posted in Back-End & Database, GraphQL

GraphQL Subscription

Subscription is another type of in GraphQL. This is use real time events using websockets, you can send notification to client for events which happen on the server using web sockets. It you are not aware what are websockets, you can find plenty of resources online. Let’s see how to implement subscription in our code […]

Posted in Back-End & Database, GraphQL

GraphQL Apollo Server

Till now we have been using a simple graphql-express middleware as a gql server. https://github.com/apollographql/apollo-server  Apollo-Server provides a full feature gql server which is production ready and should be used for most applications. Let’s move our code base to apollo-server First install via Also we don’t need graphql-tools anymore as it is inbuilt in apollo-server […]

Posted in Back-End & Database, GraphQL

GraphQL Mutations

Till now we have only seen how to fetch data and gone quite deep into it. Now let’s see the how we can update data i.e POST, PUT, DELETE requests We need to use mutations for it. Mutation also follow exact similar pattern as Query. Let’s define a mutation to add a new profile data […]

Posted in Back-End & Database, GraphQL

GraphQL Queries Part2

This in after previous blog post, lets see more usage of GQL queries Step1 In the previous blog post, we had structured our queries to return a hard coded response. In this post, we will assume we have two objects for “user” and “address” almost similar to a database structure like mysql and we have […]

Posted in Back-End & Database, Express, GraphQL

GraphQL Express JS Getting Started Part1

In this blog post we will start using graphql using expressjs. I have been working with REST API’s for a very long time so, these blog posts would be learning graphql but in context of rest api as well. To start of, do the following https://graphql.github.io/graphql-js/ https://graphql.github.io/graphql-js/running-an-express-graphql-server/ After the first step is done, you should […]