How to create a graphql schema for magento 2 custom module with custom table?

How to create a GraphQl schema for magento 2 custom module with custom table? -We have many articles to get the list of Orders, Cms Page, Customers, Customer’s Orders using GraphQl in magento 2. But Today i am going to write an article to get the list of data from Magento 2 Custom module. With the custom table using GraphQl.

To achieve this we want to create a simple module.Here we are going to create a custom module with the custom database table. Please refer How to create a custom module with custom table in Magento 2 article to get an understand about creating a custom module.

I will consider the custom module FAQ ( Consider the Package name as Ayakil, Module name as Faq)for a website. Which have question, answer and image columns in the database table to cover this article.Apart from creating the custom module I will explain the essential steps to achieve the goal.

Step 1 – Create module.xml.
Step 2 – Create schema.graphqls.
Step 3 – Create Resolver file.
Step 4 – Create Data Provider file

Magento 2 Module structure
Custom Module Structure

I am not worrying about the lengthy page. Because i want to explain as much as what i tried to achieve and what are the mistakes i did.So this may help some one.

Step 1 – creating module.xml under directory etc.I am not going to mention about registration.php. As every one aware about that. I want to mention some thing here about module.xml. Since our module is depends on Graphql, we want to give dependency in module.xml.

Step 2 – GraphQl module must include the schema.graphqls under etc directory, which is handling the query the main part of GraphQl. This file should go under app/etc/schema.graphqls

In the schema.grapqls file naming convention doesn’t have any restriction. But better to restrict with the module scope to simply identify the code.Here i am using faqs. Because our module is going to retrieve the question and answer for our website’s FAQ page. Another important thing here want to consider is the resolver file path [ class: “Ayakil\Faq\Model\Resolver\Faq”]. we want to give in the main query.

Step 3 – Creating resolver file under Model directory. File path should be app/code/Ayakil/Faq/Model/Resolver/Faq.php as mentioned in the schema.grapqls file.

Step 4 – Creating Data provider file.File path should be app/code/Ayakil/Faq/Model/Resolver/DataProvider/Faq.php

This data provider file simply return the data collection. All logic set in the collection and the function getFaq() return all the active question and answer details.After run upgrade command to install the module we can check the graphQl query response.To check the response you can use some extensions like ChromeiQL or Altair GraphQL addon. To get clear understand about GraphQl and how to access it follow What is GraphQl and how to access it?. I am using Altair GraphQL Addon.

To check our query we want to set up the endpoint.It is usually coming like <magento_root_url>/graphql. Ex :- http://ayakil.local/graphql.

sample GraphQl query & answer
sample GraphQl Request Payload and Result

That’s it. Have a nice day.Enjoy coding , Learn , Experience , Teach and Help.

1 thought on “How to create a graphql schema for magento 2 custom module with custom table?”

Leave a Reply

Your email address will not be published. Required fields are marked *