Magento 2 Custom Stock Status GraphQl & Examples
POSTGet label, image product
Bearer {{admin_token}}
curl --location -g '{{magento_base_url}}/graphql' \
--header 'Authorization: Bearer {{admin_token}}' \
--header 'Content-Type: application/json' \
--data '{"query":"{\r\nproducts(filter: {}) {\r\n\titems {\r\n sku\r\n mp_stock_status {\r\n image\r\n label\r\n }\r\n}\r\n\ttotal_count\r\n\tpage_info {\r\n\t\tcurrent_page\r\n\t\tpage_size\r\n\t\ttotal_pages\r\n\t\t\t\t\t\t}\r\n\t\t\t}\r\n}","variables":{}}'
{
"data": {
"products": {
"items": [
{
"sku": "24-MB01",
"mp_stock_status": {
"image": "http://dev.mageplaza.vn/api/api2/pub/media/attribute/swatch/swatch_thumb/110x90/5/_/5_2.jpg",
"label": "Shoes"
}
},
{
"sku": "24-MB04",
"mp_stock_status": {
"image": "http://dev.mageplaza.vn/api/api2/pub/media/attribute/swatch/swatch_thumb/110x90/1/5/155894844136-15590104610771381720866-crop-1559010465257164816218.jpeg",
"label": "Car Manufacturer"
}
},
{
"sku": "24-MB03",
"mp_stock_status": {
"image": "http://dev.mageplaza.vn/api/api2/pub/media/attribute/swatch/swatch_thumb/110x90/5/_/5_2.jpg",
"label": "Shoes"
}
},
{
"sku": "24-MB05",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-MB06",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-MB02",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-UB02",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-WB01",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-WB02",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-WB05",
"mp_stock_status": {
"image": "http://dev.mageplaza.vn/api/api2/pub/media/attribute/swatch/swatch_thumb/110x90/1/5/155894844136-15590104610771381720866-crop-1559010465257164816218.jpeg",
"label": "Car Manufacturer"
}
},
{
"sku": "24-WB06",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-WB03",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-WB07",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-WB04",
"mp_stock_status": {
"image": "http://dev.mageplaza.vn/api/api2/pub/media/attribute/swatch/swatch_thumb/110x90/5/_/5_2.jpg",
"label": "Shoes"
}
},
{
"sku": "24-UG06",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-UG07",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-UG04",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-UG02",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-UG05",
"mp_stock_status": {
"image": null,
"label": null
}
},
{
"sku": "24-UG01",
"mp_stock_status": {
"image": null,
"label": null
}
}
],
"total_count": 187,
"page_info": {
"current_page": 1,
"page_size": 20,
"total_pages": 10
}
}
}
}
Wed, 29 Apr 2020 07:37:54 GMT
Apache/2.4.38 (Ubuntu)
PHPSESSID=2e9fem7lauaj615r4jql7o0vvs; expires=Wed, 29-Apr-2020 08:37:54 GMT; Max-Age=3600; path=/api/api2; domain=dev.mageplaza.vn; HttpOnly
private_content_version=53cb5cd10f3df353a5dd243ff73962f6; expires=Sat, 27-Apr-2030 07:37:55 GMT; Max-Age=315360000; path=/
private_content_version=945277753bb55119714a0127283a7487; expires=Sat, 27-Apr-2030 07:37:55 GMT; Max-Age=315360000; path=/
private_content_version=0cce41c4ba9e622ec76845cb596a91c4; expires=Sat, 27-Apr-2030 07:37:55 GMT; Max-Age=315360000; path=/
Mon, 29 Apr 2019 07:37:55 GMT
max-age=0, must-revalidate, no-cache, no-store
no-cache
nosniff
1; mode=block
SAMEORIGIN
2065
timeout=5, max=100
Keep-Alive
application/json
POSTGet label, image cart
Bearer {{admin_token}}
curl --location -g '{{magento_base_url}}/graphql' \
--header 'Authorization: Bearer {{admin_token}}' \
--header 'Content-Type: application/json' \
--data '{"query":"{\r\ncart(cart_id: \"Jue89UzhQwDPBRPvJkHVZwMDMgld2QTK\") {\r\n items {\r\n id\r\n mp_stock_status{\r\n label\r\n image\r\n }\r\n product {\r\n name\r\n sku\r\n stock_status\r\n }\r\n quantity\r\n }\r\n }\r\n }","variables":{}}'
{
"data": {
"cart": {
"items": [
{
"id": "43",
"mp_stock_status": {
"label": "Shoes",
"image": "http://dev.mageplaza.vn/maianh/ce234h/pub/media/attribute/swatch/swatch_thumb/110x90/5/_/5_1.jpg"
},
"product": {
"name": "Strive Shoulder Pack",
"sku": "24-MB04",
"stock_status": "IN_STOCK"
},
"quantity": 1
}
]
}
}
}
Wed, 29 Apr 2020 03:22:15 GMT
Apache/2.4.38 (Ubuntu)
Mon, 29 Apr 2019 03:22:16 GMT
max-age=0, must-revalidate, no-cache, no-store
no-cache
PHPSESSID=2ipgt6413bb4qg8d8j71tl1gs5; expires=Wed, 29-Apr-2020 04:22:15 GMT; Max-Age=3600; path=/maianh/ce234h; domain=dev.mageplaza.vn; HttpOnly
private_content_version=c9191f53c55e6f1e9bdb6a4037053a68; expires=Sat, 27-Apr-2030 03:22:15 GMT; Max-Age=315360000; path=/
FPC
nosniff
1; mode=block
SAMEORIGIN
294
timeout=5, max=100
Keep-Alive
application/json
POSTStep1: GraphQL Customer Token
application/json
curl --location -g '{{magento_base_url}}/graphql' \
--header 'Content-Type: application/json' \
--data-raw '{"query":"mutation {\r\n generateCustomerToken(email: \"roni_cost@example.com\", password: \"roni_cost3@example.com\") {\r\n token\r\n }\r\n}","variables":{}}'
{
"data": {
"generateCustomerToken": {
"token": "nid4yrt7e8l8ot0tijw91zxfzxtyuii9"
}
}
}
Wed, 29 Apr 2020 07:38:38 GMT
Apache/2.4.38 (Ubuntu)
Mon, 29 Apr 2019 07:38:38 GMT
max-age=0, must-revalidate, no-cache, no-store
no-cache
PHPSESSID=2e9fem7lauaj615r4jql7o0vvs; expires=Wed, 29-Apr-2020 08:38:38 GMT; Max-Age=3600; path=/api/api2; domain=dev.mageplaza.vn; HttpOnly
private_content_version=34a987dda34d641728db2f87b96b5733; expires=Sat, 27-Apr-2030 07:38:38 GMT; Max-Age=315360000; path=/
form_key=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/api/api2; domain=dev.mageplaza.vn
private_content_version=34cf2ee74976b3a84d783a64b820bb91; expires=Sat, 27-Apr-2030 07:38:38 GMT; Max-Age=315360000; path=/
private_content_version=0136a0094a27951e62edfe2e7e5f3dc1; expires=Sat, 27-Apr-2030 07:38:38 GMT; Max-Age=315360000; path=/
nosniff
1; mode=block
SAMEORIGIN
79
timeout=5, max=100
Keep-Alive
application/json
POSTStep2: GraphQL Create an empty cart (cart_id)
application/json
Bearer {{customer_token}}
curl --location -g '{{magento_base_url}}/graphql' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{customer_token}}' \
--data '{"query":"mutation {\r\n createEmptyCart\r\n}","variables":{}}'
{
"data": {
"createEmptyCart": "ZG3OcSuB9Aaf0rG1L3Nkq3E9cBj293R1"
}
}
Wed, 29 Apr 2020 07:43:49 GMT
Apache/2.4.38 (Ubuntu)
Mon, 29 Apr 2019 07:43:49 GMT
max-age=0, must-revalidate, no-cache, no-store
no-cache
PHPSESSID=2e9fem7lauaj615r4jql7o0vvs; expires=Wed, 29-Apr-2020 08:43:49 GMT; Max-Age=3600; path=/api/api2; domain=dev.mageplaza.vn; HttpOnly
private_content_version=8df7cfb5c173974ed348bf0a68745fd6; expires=Sat, 27-Apr-2030 07:43:49 GMT; Max-Age=315360000; path=/
private_content_version=4108cf7687380de97f3e85252c91c242; expires=Sat, 27-Apr-2030 07:43:49 GMT; Max-Age=315360000; path=/
private_content_version=cf9859e48cc369540f867cf70da002e8; expires=Sat, 27-Apr-2030 07:43:49 GMT; Max-Age=315360000; path=/
nosniff
1; mode=block
SAMEORIGIN
63
timeout=5, max=100
Keep-Alive
application/json
POSTStep3: GraphQL Add products to the cart
<token>
application/json
curl --location -g '{{magento_base_url}}/graphql' \
--header 'Content-Type: application/json' \
--data '{"query":"mutation {\r\n addSimpleProductsToCart(\r\n input: {\r\n cart_id: \"ZG3OcSuB9Aaf0rG1L3Nkq3E9cBj293R1\"\r\n cart_items: [\r\n {\r\n data: {\r\n quantity: 1\r\n sku: \"24-MB04\"\r\n }\r\n \r\n }\r\n ]\r\n }\r\n ) {\r\n cart {\r\n items {\r\n id\r\n product {\r\n sku\r\n stock_status\r\n }\r\n quantity,\r\n mp_stock_status{\r\n label\r\n image\r\n }\r\n }\r\n }\r\n }\r\n}","variables":{}}'
{
"data": {
"addSimpleProductsToCart": {
"cart": {
"items": [
{
"id": "93",
"product": {
"sku": "24-MB04",
"stock_status": "IN_STOCK"
},
"quantity": 1,
"mp_stock_status": {
"label": "Car Manufacturer",
"image": "http://dev.mageplaza.vn/api/api2/pub/media/attribute/swatch/swatch_thumb/110x90/1/5/155894844136-15590104610771381720866-crop-1559010465257164816218.jpeg"
}
}
]
}
}
}
}
Wed, 29 Apr 2020 07:43:58 GMT
Apache/2.4.38 (Ubuntu)
Mon, 29 Apr 2019 07:43:58 GMT
max-age=0, must-revalidate, no-cache, no-store
no-cache
PHPSESSID=2e9fem7lauaj615r4jql7o0vvs; expires=Wed, 29-Apr-2020 08:43:58 GMT; Max-Age=3600; path=/api/api2; domain=dev.mageplaza.vn; HttpOnly
private_content_version=c4a0bbe36b41fd414c20b19e15a585cb; expires=Sat, 27-Apr-2030 07:43:58 GMT; Max-Age=315360000; path=/
private_content_version=3cb09593c199a72ca126950ea991e623; expires=Sat, 27-Apr-2030 07:43:58 GMT; Max-Age=315360000; path=/
private_content_version=42dafb1bfb8e5d1e212a77118b38d7aa; expires=Sat, 27-Apr-2030 07:43:58 GMT; Max-Age=315360000; path=/
nosniff
1; mode=block
SAMEORIGIN
360
timeout=5, max=100
Keep-Alive
application/json