{"id":174192,"date":"2019-11-29T07:46:02","date_gmt":"2019-11-29T07:46:02","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=174192"},"modified":"2025-12-18T10:17:52","modified_gmt":"2025-12-18T10:17:52","slug":"add-multiple-or-conditions-in-magento-2-collection","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/","title":{"rendered":"Add multiple OR conditions in Magento 2 collection"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>Magento 2 collections are widely used to fetch data from the database in a structured and optimized way.<\/p>\n\n\n\n<p>By default, when we add multiple filters to a collection, Magento applies them using <strong>AND conditions<\/strong>. However, there are many real-world scenarios where we need to apply <strong>OR conditions<\/strong> instead.<\/p>\n\n\n\n<p>For example, you may want to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Fetch products with <strong>status enabled OR visibility catalog<\/strong><\/li>\n\n\n\n<li>Load orders with <strong>state complete OR closed<\/strong><\/li>\n\n\n\n<li>Filter customers by <strong>multiple attributes<\/strong><\/li>\n<\/ul>\n\n\n\n<p>In this blog, we\u2019ll learn <strong>how to add multiple OR conditions in Magento 2 collections<\/strong> using different approaches.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Default Behavior: AND Condition<\/h2>\n\n\n\n<p>When you add filters like this, Magento applies an <strong>AND condition<\/strong>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">$collection->addFieldToFilter('status', 1)\n           ->addFieldToFilter('visibility', 4);\n<\/pre>\n\n\n\n<p>This generates SQL similar to:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">WHERE status = 1 AND visibility = 4\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Using an OR Condition with <code>addFieldToFilter<\/code><\/h2>\n\n\n\n<p>To apply an <strong>OR condition<\/strong>, you can pass an array of conditions inside <code>addFieldToFilter<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example: Single Field OR Condition<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">$collection->addFieldToFilter(\n    'status',\n    ['eq' => 1, 'eq' => 2]\n);\n<\/pre>\n\n\n\n<p>However, this works only for limited cases.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Add Multiple OR Conditions (Recommended Way)<\/h2>\n\n\n\n<p>To apply <strong>multiple OR conditions across different fields<\/strong>, use the array format:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">$collection->addFieldToFilter(\n    ['status', 'visibility'],\n    [\n        ['eq' => 1],\n        ['eq' => 4]\n    ]\n);\n<\/pre>\n\n\n\n<p>This produces SQL like:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">WHERE (status = 1 OR visibility = 4)\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Using OR Conditions with LIKE<\/h2>\n\n\n\n<p>You can also use OR conditions with <code>LIKE<\/code> queries:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">$collection->addFieldToFilter(\n    ['sku', 'name'],\n    [\n        ['like' => '%shirt%'],\n        ['like' => '%shirt%']\n    ]\n);\n<\/pre>\n\n\n\n<p>This is useful for search-type functionality.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Combining AND and OR Conditions<\/h2>\n\n\n\n<p>Magento allows you to mix <strong>AND and OR conditions<\/strong> as well:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">$collection->addFieldToFilter('status', 1)\n           ->addFieldToFilter(\n               ['sku', 'name'],\n               [\n                   ['like' => '%shirt%'],\n                   ['like' => '%shirt%']\n               ]\n           );\n<\/pre>\n\n\n\n<p>This results in:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">WHERE status = 1 AND (sku LIKE '%shirt%' OR name LIKE '%shirt%')\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Using <code>Zend_Db_Expr<\/code> (Advanced)<\/h2>\n\n\n\n<p>For complex conditions, you can use SQL expressions:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">$collection->getSelect()->where(\n    '(status = ? OR visibility = ?)',\n    [1, 4]\n);\n<\/pre>\n\n\n\n<p><strong>Important<\/strong>: Use this approach carefully, as it bypasses Magento\u2019s abstraction layer.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Best Practices<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Prefer <code>addFieldToFilter<\/code> for better compatibility<\/li>\n\n\n\n<li>Use SQL expressions only for complex scenarios<\/li>\n\n\n\n<li>Always test the generated SQL using <code>$collection->getSelect()->__toString()<\/code><\/li>\n\n\n\n<li>Avoid raw SQL unless necessary<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Adding multiple OR conditions in Magento 2 collections is simple once you understand the array-based syntax. This approach keeps your code clean, readable, and aligned with Magento best practices.<\/p>\n\n\n\n<p>Mastering collection filtering helps you build <strong>efficient modules, custom reports, and optimized business logic<\/strong> in Magento 2.<\/p>\n\n\n\n<p>If you require technical support, feel free to email us at&nbsp;<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>.<\/p>\n\n\n\n<p>Additionally, explore a wide array of solutions to boost your store\u2019s capabilities by visiting the&nbsp;<a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Adobe Commerce modules&nbsp;<\/a>section.<\/p>\n\n\n\n<p>For expert advice or to create tailored features,&nbsp;<a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">hire Adobe Commerce Developers<\/a>&nbsp;for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Magento 2 collections are widely used to fetch data from the database in a structured and optimized way. By default, when we add multiple filters to a collection, Magento applies them using AND conditions. However, there are many real-world scenarios where we need to apply OR conditions instead. For example, you may want to: <a href=\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":201,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[],"class_list":["post-174192","post","type-post","status-publish","format-standard","hentry","category-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add multiple OR conditions in Magento 2 collection - Webkul Blog<\/title>\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\/add-multiple-or-conditions-in-magento-2-collection\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add multiple OR conditions in Magento 2 collection - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Introduction Magento 2 collections are widely used to fetch data from the database in a structured and optimized way. By default, when we add multiple filters to a collection, Magento applies them using AND conditions. However, there are many real-world scenarios where we need to apply OR conditions instead. For example, you may want to: [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/\" \/>\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=\"2019-11-29T07:46:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-18T10:17:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sanjay Chouhan\" \/>\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=\"Sanjay Chouhan\" \/>\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\/add-multiple-or-conditions-in-magento-2-collection\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/\"},\"author\":{\"name\":\"Sanjay Chouhan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462\"},\"headline\":\"Add multiple OR conditions in Magento 2 collection\",\"datePublished\":\"2019-11-29T07:46:02+00:00\",\"dateModified\":\"2025-12-18T10:17:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/\"},\"wordCount\":354,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/\",\"name\":\"Add multiple OR conditions in Magento 2 collection - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2019-11-29T07:46:02+00:00\",\"dateModified\":\"2025-12-18T10:17:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Add multiple OR conditions in Magento 2 collection\"}]},{\"@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\/645580979f637b0e355deea21bd07462\",\"name\":\"Sanjay Chouhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?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\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sanjay Chouhan\"},\"sameAs\":[\"https:\/\/www.instagram.com\/sanjaychouhansc\/\",\"https:\/\/in.linkedin.com\/in\/scchouhansanjay\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/sanjay-chouhan180\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Add multiple OR conditions in Magento 2 collection - Webkul Blog","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\/add-multiple-or-conditions-in-magento-2-collection\/","og_locale":"en_US","og_type":"article","og_title":"Add multiple OR conditions in Magento 2 collection - Webkul Blog","og_description":"Introduction Magento 2 collections are widely used to fetch data from the database in a structured and optimized way. By default, when we add multiple filters to a collection, Magento applies them using AND conditions. However, there are many real-world scenarios where we need to apply OR conditions instead. For example, you may want to: [...]","og_url":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2019-11-29T07:46:02+00:00","article_modified_time":"2025-12-18T10:17:52+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Sanjay Chouhan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sanjay Chouhan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/"},"author":{"name":"Sanjay Chouhan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462"},"headline":"Add multiple OR conditions in Magento 2 collection","datePublished":"2019-11-29T07:46:02+00:00","dateModified":"2025-12-18T10:17:52+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/"},"wordCount":354,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/","url":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/","name":"Add multiple OR conditions in Magento 2 collection - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2019-11-29T07:46:02+00:00","dateModified":"2025-12-18T10:17:52+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-multiple-or-conditions-in-magento-2-collection\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Add multiple OR conditions in Magento 2 collection"}]},{"@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\/645580979f637b0e355deea21bd07462","name":"Sanjay Chouhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?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\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sanjay Chouhan"},"sameAs":["https:\/\/www.instagram.com\/sanjaychouhansc\/","https:\/\/in.linkedin.com\/in\/scchouhansanjay"],"url":"https:\/\/webkul.com\/blog\/author\/sanjay-chouhan180\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/174192","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\/201"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=174192"}],"version-history":[{"count":17,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/174192\/revisions"}],"predecessor-version":[{"id":518030,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/174192\/revisions\/518030"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=174192"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=174192"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=174192"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}