Ergonode Docs
GraphQL API
User Manual
Roadmap
Feedback
About
Search
⌃K
Links
GraphQL API
Overview
Query types
Error codes
Schema
CHANGELOG
Changelog
Breaking changes
Guides
Authentication
Basic query tutorial
Batching mutations
Integrating data
AttributeValue migration guide
Query examples
List of products with attributes and they values in product stream
List of 100 grouped products with simple and variable products in stream
List of grouped products with simple and variable products AFTER some end cursor
List of active languages
List of templates with attributes
List of all multimedia in stream
List of product relations for a specific product
Create a simple product
Create a grouping product
Create a variable product
Add a child product to grouping one
Set quantity of child product
Remove a child product from grouping one
Add a variant to variable product
Get products with variants, binding attributes and variants list
Remove a variant product from variable one
Multimedia create
Add images to the gallery attribute
Change the name of the multimedia
Set alternative value for a multimedia
Delete Multimedia
Add a file to the product
Get attributes list by SKU
Create a product and assign / modify attributes values
Assign the template to a product
Create a category
Get category tree by category tree code
Get a specific category with values of the category attribute
List templates and attributes in those templates
Powered By
GitBook
Set quantity of child product
Here's how you can set child product quantity via API.
mutation
{
productGroupingSetChildQuantity
(
input
:
{
sku
:
"SKU_GR_PRODUCT"
,
childSku
:
"SKU_test2"
,
quantity
:
2
}
)
{
__typename
}
}
Query examples - Previous
Add a child product to grouping one
Next - Query examples
Remove a child product from grouping one
Last modified
9mo ago