{"id":407122,"date":"2023-10-30T12:38:16","date_gmt":"2023-10-30T12:38:16","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=407122"},"modified":"2024-04-03T13:14:15","modified_gmt":"2024-04-03T13:14:15","slug":"how-to-add-products-in-cart-using-graphql","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/","title":{"rendered":"How to add products to cart using GraphQL"},"content":{"rendered":"\n<p>In this article, we will learn about how to add products to the cart <a href=\"https:\/\/webkul.com\/blog\/graphql-implementation-in-magento2\/\">using GraphQL<\/a>.<\/p>\n\n\n\n<p>To add a product in Magento 2 using GraphQL, first, ensure you have the necessary GraphQL endpoint and authentication tokens.<\/p>\n\n\n\n<p><strong>GraphQL Endpoint:<\/strong> BASE_URL\/graphql<br>Example: http:\/\/example.com\/graphql<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1:  Create an empty cart.<\/h2>\n\n\n\n<p>First off, we need to create an empty cart to add products in Magento 2 .<\/p>\n\n\n\n<p>We have created an empty cart for the guest user using the following mutation, token is not required for the guest user.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"691\" height=\"447\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png\" alt=\"upGrap\" class=\"wp-image-408613\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png 691w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap-300x194.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap-250x162.png 250w\" sizes=\"(max-width: 691px) 100vw, 691px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Request:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">mutation {\n  createEmptyCart\n}<\/pre>\n\n\n\n<p>Response:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">{\n    &quot;data&quot;: {\n        &quot;createEmptyCart&quot;: &quot;HGtFTrWohKAg9o9uXL8HRzl9JCIp8btn&quot;\n    }\n}<\/pre>\n\n\n\n<p>This mutation creates an empty cart for the guest user. The unique shopping cart_id:  <em>HGtFTrWohKAg9o9uXL8HRzl9JCIp8btn<\/em>. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Add a simple product.<\/h2>\n\n\n\n<p>The following mutation adds a simple product to the shopping cart.<\/p>\n\n\n\n<p>We will add the simple product &#8220;Test (<em>test<\/em>)&#8221; to the cart. The SKU identifies the product to be added.<\/p>\n\n\n\n<p>Request:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">mutation {\n  addSimpleProductsToCart(\n    input: {\n      cart_id: &quot;HGtFTrWohKAg9o9uXL8HRzl9JCIp8btn&quot;\n      cart_items: &#091;\n        {\n          data: {\n            quantity: 1\n            sku: &quot;test&quot;\n          }\n        }\n      ]\n    }\n  ) {\n    cart {\n      items {\n        id\n        product {\n          sku\n          stock_status\n        }\n        quantity\n      }\n    }\n  }\n}<\/pre>\n\n\n\n<p>Response:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">{\n    &quot;data&quot;: {\n        &quot;addSimpleProductsToCart&quot;: {\n            &quot;cart&quot;: {\n                &quot;items&quot;: &#091;\n                    {\n                        &quot;id&quot;: &quot;484&quot;,\n                        &quot;product&quot;: {\n                            &quot;sku&quot;: &quot;test&quot;,\n                            &quot;stock_status&quot;: &quot;IN_STOCK&quot;\n                        },\n                        &quot;quantity&quot;: 1\n                    }\n                ]\n            }\n        }\n    }\n}<\/pre>\n\n\n\n<p>Execute the mutation through your GraphQL client, and the simple product will be added to your Magento store.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Add a simple product with customizable options.<\/h2>\n\n\n\n<p>The following mutation adds a simple product with customizable options to the shopping cart.<\/p>\n\n\n\n<p>We will add the simple product with the customizable option &#8220;Simple (<em>simple<\/em>)&#8221; to the cart. The SKU identifies the product to be added.<\/p>\n\n\n\n<p>Request:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">mutation {\n  addSimpleProductsToCart(\n    input: {\n      cart_id: &quot;HGtFTrWohKAg9o9uXL8HRzl9JCIp8btn&quot;\n      cart_items: &#091;{\n        data: { \n            quantity: 1, \n            sku: &quot;simple&quot; \n        }\n        customizable_options: &#091;\n          {\n            id: 64\n            value_string: 128\n          }\n           \n        ]\n      }]\n    }\n  ) {\n    cart {\n      items {\n        id\n        product {\n          name\n          sku\n        }\n        quantity\n      }\n    }\n  }\n}<\/pre>\n\n\n\n<p>Response:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">{\n    &quot;data&quot;: {\n        &quot;addSimpleProductsToCart&quot;: {\n            &quot;cart&quot;: {\n                &quot;items&quot;: &#091;\n                    {\n                        &quot;id&quot;: &quot;484&quot;,\n                        &quot;product&quot;: {\n                            &quot;name&quot;: &quot;test&quot;,\n                            &quot;sku&quot;: &quot;test&quot;\n                        },\n                        &quot;quantity&quot;: 1\n                    },\n                    {\n                        &quot;id&quot;: &quot;485&quot;,\n                        &quot;product&quot;: {\n                            &quot;name&quot;: &quot;simple&quot;,\n                            &quot;sku&quot;: &quot;simple&quot;\n                        },\n                        &quot;quantity&quot;: 1\n                    }\n                ]\n            }\n        }\n    }\n}<\/pre>\n\n\n\n<p>The response lists all items currently in the cart.<\/p>\n\n\n\n<p>Hope this will help you.<\/p>\n\n\n\n<p>Thanks \ud83d\ude42<\/p>\n\n\n\n<p>You can check the following blogs  related to GraphQl: <br><a href=\"https:\/\/webkul.com\/blog\/graphql-implementation-in-magento2\/\">GraphQl implementation in Magento 2<\/a><br><a href=\"https:\/\/webkul.com\/blog\/graphql-mutation-2\/\">GraphQL Mutation<\/a> <\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will learn about how to add products to the cart using GraphQL. To add a product in Magento 2 using GraphQL, first, ensure you have the necessary GraphQL endpoint and authentication tokens. GraphQL Endpoint: BASE_URL\/graphqlExample: http:\/\/example.com\/graphql Step 1: Create an empty cart. First off, we need to create an empty cart <a href=\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":379,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[292,7085,14681,2460,15046],"class_list":["post-407122","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-api","tag-graphql","tag-graphql-api","tag-magento-2","tag-magento-2-add-products-to-the-cart-using-graphql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add products to cart using GraphQL<\/title>\n<meta name=\"description\" content=\"To add a product in Magento 2 using GraphQL, first, ensure you have the necessary GraphQL endpoint and authentication tokens.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add products to cart using GraphQL\" \/>\n<meta property=\"og:description\" content=\"To add a product in Magento 2 using GraphQL, first, ensure you have the necessary GraphQL endpoint and authentication tokens.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-30T12:38:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-03T13:14:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png\" \/>\n<meta name=\"author\" content=\"Krishna Mohan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Krishna Mohan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/\"},\"author\":{\"name\":\"Krishna Mohan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/32da2f954b256b95b4c44ddeacca51b1\"},\"headline\":\"How to add products to cart using GraphQL\",\"datePublished\":\"2023-10-30T12:38:16+00:00\",\"dateModified\":\"2024-04-03T13:14:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/\"},\"wordCount\":248,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png\",\"keywords\":[\"api\",\"graphQL\",\"GraphQl Api\",\"Magento 2\",\"magento 2 add products to the cart using graphql\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/\",\"name\":\"How to add products to cart using GraphQL\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png\",\"datePublished\":\"2023-10-30T12:38:16+00:00\",\"dateModified\":\"2024-04-03T13:14:15+00:00\",\"description\":\"To add a product in Magento 2 using GraphQL, first, ensure you have the necessary GraphQL endpoint and authentication tokens.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png\",\"width\":691,\"height\":447,\"caption\":\"upGrap\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add products to cart using GraphQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/32da2f954b256b95b4c44ddeacca51b1\",\"name\":\"Krishna Mohan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ff4d070d18606ffded6efe51b5703bf4b6a46b26b9e4db5e6ecfdbf023daab4c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ff4d070d18606ffded6efe51b5703bf4b6a46b26b9e4db5e6ecfdbf023daab4c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Krishna Mohan\"},\"description\":\"Krishna, a Software Engineer, specializes in the Magento platform, delivering high-performance eCommerce solutions. Expertise spans custom development, system optimization, and seamless integration, driving innovation and enhancing business operations.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/krishna-mohan439webkul-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to add products to cart using GraphQL","description":"To add a product in Magento 2 using GraphQL, first, ensure you have the necessary GraphQL endpoint and authentication tokens.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/","og_locale":"en_US","og_type":"article","og_title":"How to add products to cart using GraphQL","og_description":"To add a product in Magento 2 using GraphQL, first, ensure you have the necessary GraphQL endpoint and authentication tokens.","og_url":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-10-30T12:38:16+00:00","article_modified_time":"2024-04-03T13:14:15+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png","type":"","width":"","height":""}],"author":"Krishna Mohan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Krishna Mohan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/"},"author":{"name":"Krishna Mohan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/32da2f954b256b95b4c44ddeacca51b1"},"headline":"How to add products to cart using GraphQL","datePublished":"2023-10-30T12:38:16+00:00","dateModified":"2024-04-03T13:14:15+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/"},"wordCount":248,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png","keywords":["api","graphQL","GraphQl Api","Magento 2","magento 2 add products to the cart using graphql"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/","url":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/","name":"How to add products to cart using GraphQL","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png","datePublished":"2023-10-30T12:38:16+00:00","dateModified":"2024-04-03T13:14:15+00:00","description":"To add a product in Magento 2 using GraphQL, first, ensure you have the necessary GraphQL endpoint and authentication tokens.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/upGrap.png","width":691,"height":447,"caption":"upGrap"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-products-in-cart-using-graphql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add products to cart using GraphQL"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/32da2f954b256b95b4c44ddeacca51b1","name":"Krishna Mohan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ff4d070d18606ffded6efe51b5703bf4b6a46b26b9e4db5e6ecfdbf023daab4c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ff4d070d18606ffded6efe51b5703bf4b6a46b26b9e4db5e6ecfdbf023daab4c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Krishna Mohan"},"description":"Krishna, a Software Engineer, specializes in the Magento platform, delivering high-performance eCommerce solutions. Expertise spans custom development, system optimization, and seamless integration, driving innovation and enhancing business operations.","url":"https:\/\/webkul.com\/blog\/author\/krishna-mohan439webkul-com\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/407122","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/379"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=407122"}],"version-history":[{"count":17,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/407122\/revisions"}],"predecessor-version":[{"id":431479,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/407122\/revisions\/431479"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=407122"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=407122"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=407122"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}