Magento 2 API updates: New Query Language

Table of Content

magento-2-api-updates-graphql
Posted in: Magento 2 Guides

We’ve already written about Magento 2 API so why to come back to the topic?

Well, it’s been over a year, and some changes are in. You’ve most likely learned about these changes from our Magento 2 news post. But today we will discuss the particular area - Magento 2 API and new ways to deal with it.

See what Amasty's extensions support API

 

Magento API: what’s new?

Actually, a lot. Magento is a dynamic system with a vibrant community who steadily monitor Magento users and try their best to resolve the issues they face.

You may face another type of difficulty: difficulties with shipping restrictions. To make your shipping process legal and cost-effective, use the Shipping Restrictions extension.

As far as Magento APIs are concerned, Magento decided to offer a viable alternative to REST architecture and SOAP protocol. It’s GraphQL, a specific query language developed by Facebook in 2012 and released to the public in 2015. What for? Magento community strives for more flexibility and efficiency, and GraphQL exceeds the latter 2 in both. Let’s consider some examples.

GraphQL vs. REST API and SOAP API: Key advantages

GraphQL provides 2 important benefits - improved targeting and performance.

Perk #1 Improved targeting

Working with GraphQL, you can indicate what data you expect from the server and get exactly what you’ve asked for. Here’s an example.

Say, you need to get the price for the product with the SKU 24-MB05.

With REST API it works as follows:

And here is how it works with GraphQL:

As we can see, REST extracts a bunch of information totally irrelevant to the query, while GraphQL takes out only the needed data.

Perk #2. Improved performance

Extracting data with GraphQl often requires only 1 query, whereas the same operation with REST and SOAP needs several.

Say, we need to get the price for the product with SKU 24-MB05 and the email for the user with id 1.

How will we get it with REST?

Add the query for extracting the user 1 email to the query for extracting the price (above):

With REST, we get a lot of irrelevant info. And what happens with GraphQL?

Take a look:

We get exhaustive information without any “noise”.

As we can see, GraphQL reduces the number of queries to the server, which improves its performance. What does it mean to the user? The results will be delivered faster and lagging will be reduced to a minimum if not null.

Working with Magento 2 GraphQL

Step #1. The start

Let's start the Magento 2 GraphQL tutorial. And here comes the 1st stumbling block. At the moment, a convenient interface (like Swagger for REST API) is not available for magento 2.3 GraphQL. So to work with this tool, you’ll need to install ChromeiQL, a special Chrome extension. After the setup, click on the extension icon. You’ll get to this page:

Then input http://<magento-directory>/graphql into the Set Endpoint field:

Now you can set off. Unfortunately, the available methods are not shown here as in Swagger. So you’ll have to check the code. To find the available methods, you need to open Magento modules and find those that end in graph-ql:

Enter any module and find etc. directory and then - schema.graphqls. Now search for the block type Query {}. As here we use module-catalog-graph-ql, the available queries are products and category:

Step #2 GraphQL: queries with examples

The language supports basic 2 types of queries:

  • type Query for reading;
  • type Mutation for performing CRUD operations.

But how to write a query correctly? We provide a simple guide below.

GraphQL: how to write a query?

1. First of all, we have to detect the query name. To do so, just check schema.graphqls file and find type Query or type Mutation (depending on the query in question). Query names are located on the 1st level of nesting:

2. Now let’s decide what info we want to get. Let’s “hunt” for the products with prices exceeding 45.

So our query is products. Now we need to set up filters. So we look for the needed filter in ProductFilterInput:

3. Great. To add the filter, we need to save the structure as it is in the schema.graphqls file.

4. Now we need to set up a new filter. This attribute is of the FilterTypeInput type. Let’s find the type then:

5. Way to go! Now we add it to the query.

6. Then we detect how to find the file name we need. As you remember, the extracted type is Products. Here it is:

7. Now we check page_info, total_count, filters, sort_fields.

The docs to these attributes show that they are not what we need. So we are left with items of the ProductInterface type.

Here it is:

8. Now we copy it and add to the query.

9. Finally, we can feed it to ChromeiQL and yield the results:

Summing up

Striving to make API processing more flexible, Magento expanded the number of options for query processing adding GraphQL, a Facebook-generated language. So is it worth your efforts?

Here’s what we can say for certain:

  1. GraphQL offers improved targeting. While REST and SOAP deliver the needed results accompanied by a lot of irrelevant info, GraphQL yields the data you are looking for and no more.
  2. GraphQL is more compact. As the examples show, when REST and SOAP need several queries, GraphQL only requires one. This improves server performance, which prevents lagging and boosts user experience.

That’s it for now. We’ll continue to explore working with GraphQL, so stay tuned.

Have you got any questions? Please drop us a line below.

May 11, 2019
May 17, 2019
May 4, 2019
Comments
Guest
August 21, 2019
3.5
Reply
Guest
September 18, 2019
1
Reply
Guest
September 18, 2019
5
Reply
Dhiraj
December 7, 2019
Hey, nice article. Very informative as well. I'm wondering on two things: 1. I do not see "FilterTypeInput type" in "module-catalog-graph-ql" -am new to this so do you think something has changed. Am using magento 2.3.1 as well with XAMPP 2. Does the XAMPP exposes the graphql api by default on local host or I need to setup separate server for it like appollo? I'm trying to set endpoints with localhost but has not been successful.
Reply
Polina Litreyeva
December 9, 2019
Hi, Dhiraj! Thanks for your comment and your questions. Answering the first question, we would recommend you to use Magento 2.3.3. To answer your second question, we need more information about your case, but it's always a good idea to check <a href="https://devdocs.magento.com/guides/v2.3/install-gde/bk-install-guide.html" rel="nofollow">official Magento documentation.</a> If you have any other questions, feel free to <a href="https://amasty.com/contacts/">contact us </a>in any convenient way.
ravikant
January 21, 2020
Hi MIHAIL, Does magento2.2 enterprize edition supports graphql. Can we complete checkout steps with graphql with enterprize edition.
Reply
Polina Litreyeva
January 24, 2020
Hello! You see, GraphQL API is available for Magento 2.3 and higher versions. You can find more info about Magento GraphQL in the <a href="https://devdocs.magento.com/guides/v2.3/graphql/index.html" rel="nofollow">official documentation</a>.
Shoaib Novak
March 16, 2021
Nice, detailed article with good examples!
Reply
Vladimir Derachits
March 16, 2021
Hi Shoaib, thanks for the feedback! We are glad that this article was helpful to you.
bruno gemelli
April 14, 2021
Nice article!
Reply
Vladimir Derachits
April 19, 2021
Hi, Bruno. Thanks for sharing your opinion, we are glad to be helpful.
Leave your comment

Your email address will not be published

This blog was created with Amasty Blog Pro

This blog was created with Amasty Blog Pro

© 2009-2024 Amasty. All Rights Reserved.