Elastic Search
How to Enable 'eq' Filter GraphQL Search for an Custom Attribute of Type Text in Magento 2

Generally there are 3 types of filter that you can use with graphql search and these filter type depends upon your attribute configuration. FilterEqualTypeInput - Input type is set to Yes/No, Select, or Multiple select. Your filter can contain the eq or in attribute. Use the eq attribute to exactly match the specified string. Use the in attribute to filter on a comma-separated list […]

Read more
Elastic Search
Magento 2 - Useful Elasticsearch Commands

In this document, we will cover the elastic search commands that we generally used in the context of Magento debugging. Related Tutorials To get the Indices Details List all indices Sample Output List all aliases Delete All Indices Sample Output To Fetch the Data directly from Elasticsearch Get Records Count To fetch the total no […]

Read more
Elastic Search
Magento 2 - Elastic Search Concepts for a Magento Developer

Related Articles Elastic Search is a powerful search and analytics engine. It is known for its distributed nature, speed, and scalability. This document covers the important concepts of elastic search that would require for a magento developer The Elasticsearch Instance Once Elasticsearch is installed and running you have the instance of the Elasticsearch also known […]

Read more
Elastic Search
Magento 2 - How data is fetched from Elasticserach

Related Articles Overview Once we have the product data pushed to Elasticsearch we can now use ES API's to fetch data. The data from ES helps to Identify the products ids that are relevant for the specific search query. Filter Navigation / Aggregation Once we have the products ids, The relevant product data such as […]

Read more
Elastic Search
How Product Data is Pushed to Elasticsearch from Magento

Related Articles To serve data from elastic search we first need to push data to elastic search, This is done through the catalog search fulltext indexing. Lets explore more in to this through the below sections. Identity the Relevant Products to Push to Elasticsearch The products that are enabled, visibility = catalog search will be […]

Read more
Elastic Search
Elastic Search for Magento Developer

As of Magento 2.4 Magento does not support MySql as a Search Engine. Now, you must install and configure Elasticsearch as your search engine before upgrading to 2.4. The below are the two primary actions involved with magento integration with elastic search which we will see in detail. Push Data The product data from Magento […]

Read more