Skip to content

graphql

Auto Added by WPeMatico

How to add Product to Cart with Mutiple custom options using GraphQl?

I have Two custom Options for Downloadable Product here is my query response for getting product { “data”: { “products”: { “items”: [ { “id”: 145, “name”: “Product Attachments”, “sku”: “FME_135_M2”, “__typename”: “DownloadableProduct”, “options”: [ { “title”: “Include:”, “required”: false,… Read More »How to add Product to Cart with Mutiple custom options using GraphQl?

How I can provide arguments towards the existing graphql request?

I made the followig schema.graphqls type BlogPost { blog_post_id: ID title: String post: String } input BlogpostAttributeFilterInput { page: Int limit: Int } type Query { allBlogPosts(input: BlogpostAttributeFilterInput) : [BlogPost] @resolver(class: “\MageGuide\FirstModule\Model\Resolver\GetBlogPosts”) @doc(description:”Retrieve All BlogPosts”) @cache(cacheable: false) } And I… Read More »How I can provide arguments towards the existing graphql request?