Page Builder used to create content using drag-and-drop built-in tools. It is the most powerful feature for developers, no need to do the coding which ultimately saves your time. You can review a preview of the content instantly, customize the text in the forms, add sliders and banners, and so many features are there. In […]
How to get Magento 2 Page Builder content in PWA storefront
The static blocks are a more useful feature in Magento 2. You can manage static content like photos, videos, URL links, formatting content, etc. These static blocks can also be rendered on the pages of the PWA storefront. You can get single and more than one static block content using only one single component in […]
Magento 2 PWA Studio provides a built-in Venia UI package which is very useful to reference when customizing a storefront. In many cases, we need to create a static route with URL params like a search page. Let’s get an idea of how to create a custom page having a static route with URL params. […]
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 […]
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 […]

