- https://amasty.com/blog/magento-2-api-updates-graphql/
- General overview about GraphQL
- https://larsroettig.dev/how-to-create-a-graph-ql-endpoint-for-magento-2-3
- This Tutorial shows how to create an own Magento 2 GraphQL Endpoint.
Post here what should also cover in a Tutrial or if find helpful tutorial.
2 Answers 2
I have written some graphQl related articles.Please have a look and share your thoughts.Hope these articles will help some one.
All articles are based on my current project which i found solutions.
- What is GraphQl in magento 2.3 and how to access it?
- How to create a graphql schema for magento 2 custom module with custom table?
- How to create a Graphql schema by passing argument for custom magento 2.3 module with custom table?
- How to get product attribute value, label using GraphQl in Magento 2.3?
- How to write grapgQl mutation to create and integrate the contact us page functionality in magento 2.3.2?
- How to filter product collection with default graphql products query?
- How to write magento custom search using GraphQl?
- How to get the store configuration values using GraphQl in magento 2?
answered Dec 23, 2019 at 10:18
Mujahidh
2,7825 gold badges41 silver badges87 bronze badges
-
1
I have created feedback/contact form with custom fields inserted by Graphql api You can download my code here https://github.com/kaushikrohit54/feedback
mutation {
createQueryFeedbacks(
input: {
name: "Rohit kaushik"
mobile: "9876543210"
email: "[email protected]"
feedback: "This is my feedback or query to admin"
disclaimer: "Yes"
}
)
{
feedback_submit {
entity_id
name
mobile
email
feedback
disclaimer
}
}
}
answered Oct 29, 2021 at 6:31
Rohit Kaushik
2953 silver badges12 bronze badges
default