Code Samples
Magento2 - Create custom ElasticSearch Tokenizer & Analyzer to search comma separated value in product attribute

In this blog we will see how to search a custom product attribute that contains comma separated value by building a custom elastic search tokenizer and analyzer. The default elastic search tokenizer that magento implements is space separated, i.e if you have a string "Love Magento" we can search by the word "Love" and "Magento" […]

Read more
Code Samples
How to Fetch the Complete Magento 2 Graphql Schema

You can use the below graphql request to fetch the complete graphql schema. Method: Post Url : yourdomain/graphql Body : Response The output would be some thing like the below, i.e you will get the the complete schema of the system. Ustually it will be around 50000+ lines

Read more