There are many pages provided by PWA Venia Storefront like the Home page, Category page, Product page, Search page, etc. In many cases, we need to create custom pages. Once you set up PWA Studio with Magento 2 and created a custom package, you should work in that custom package directory. So now we would […]
Create a custom page with static route in Magento 2 PWA
Setup PWA Studio with Magento 2
5 years ago
Magento Progressive Web Apps (PWA) provides a mobile application experience to users with so many development tools and React components. It provides fast and reliable performance to users. PWA is compatible with Magento 2.3 and above versions. Install Venia sample data in Magento 2 In case, you want to install venia sample data in your […]
How to display data in front using GraphQL
5 years ago
We can fetch data through GraphQL Schema in 2 ways: Apollo Client Library AJAX These both are alternate solutions. You can review Apollo Client Document for how to retrieve data using the Apollo Client. Moreover, we prefer to install the Apollo-Boost AMD module which is free open-source, you can get its GitHub repo from here. […]
We would get an idea of how to implement GraphQL schema for a custom table to fetch more than one result row. Multiple result row Let’s say we have a module Mage2_Person. This module will define the GraphQL schema to fetch multiple data results. Step 1: Create a module.xml file File Path: Mage2/Person/etc/module.xml <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" […]
In many cases, we require to create a custom table and integrate GraphQL schema for the same. Here, we would get an idea of how to implement GraphQL Schema for a custom table in detail. We can fetch search results in 2 ways using GraphQL schema, Single result row Multiple result row Single result row […]

