How to use FilterRangeTypeInput in GraphQl Magento 2?

Magento with GraphQl, Filter Range Type Input used to filter the query by the range type like from and to.

This type used to filter the response based on the selection of range value of from and to.

I hope you are aware of the Use FilterEqualTypeInput and FilterMatchTypeInput in GraphQl Magento.

Continue reading “How to use FilterRangeTypeInput in GraphQl Magento 2?”

How to check product is in stock status programmatically Magento 2?

While developing on Magento 2 dependent on the Product stock status, In stock or Out of stock, you need to check it programmatically using StockRegistryInterface.

Use the Magento\CatalogInventory\Api\StockRegistryInterface class to fetch product stock status.

Let’s take a simple example by passing the Product id, to check the Product stock status, Continue reading “How to check product is in stock status programmatically Magento 2?”

Get Qty Increments value by product SKU Magento 2.

Get Product Qty Increments value programmatically by product id or SKU in Magento.

Qty Increments Value will be set from the Admin Panel and used to add qty in multiply of that value. If you have set value equals 5, You must have to add multiple of 5 in qty field to add a product. (Allowed Value 5, 10, 15, 20, etc…)

Go To Catalog -> Products -> Add/Edit Product,
Click on Advanced Inventory,
Select Options as Yes from the Enable Qty Increments dropdown and a new input field will be visible.
Now, Set Qty Increments Value as per your choice.
Save Product. Continue reading “Get Qty Increments value by product SKU Magento 2.”