Hi Team,
I want to send the GraphQL queries to Magento and then Magento sends back a response.
can anyone help me how I can achieve this by using sling servlet and models.
I investigated about it but haven't found anything in google.
Thanks,
Prince
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
@Prince_Shivhare the POC which I did an year back should help you ,check below article.
http://www.coderss.in/read-magento-product-data-via-graphql-in-aem/
@Prince_Shivhare the POC which I did an year back should help you ,check below article.
http://www.coderss.in/read-magento-product-data-via-graphql-in-aem/
Hi Raj,
I saw your article and having information in detail.
but your article says to connect it with CIF first and then product details component to product data?
will it work without the CIF?
our requirement is to call the using the graphql query hit Magento instance and get the response.
Can you help me here?
Views
Replies
Total Likes
Hi Prince, the CIF helps use to make the development faster and it is an accelerator for your CIF project, when it comes to hitting graphql then you need to make a http request by passing inputs as json format. check below links https://amasty.com/blog/magento-2-api-updates-graphql/
https://devdocs.magento.com/guides/v2.4/graphql/
Views
Replies
Total Likes
Hi @raj_mandalapu this link is not accessible. Can you please share the updated link to your POC.
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi @Prince_Shivhare this is easy to solve
The entire CIF Core Components project is your example. It provides the graphql client (which is independent form the backend) which accepts any GraphQL query. For Magento we provide addition helpers and a full step of data model classes representing the Magento Schema. This allows you to work with Java objects instead with GraphQL query strings. For example the product teaser component https://github.com/adobe/aem-core-cif-components/blob/master/bundles/core/src/main/java/com/adobe/cq...
My colleague Mark and me did a tech talk during last adapt.to conf and CIF GraphQL usage and customization: https://adapt.to/2020/en/schedule/graphql-services-in-the-aem-world.html
Markus
Views
Replies
Total Likes