ProductBulkCreate
Creates products.
Added in Saleor 3.13This API is currently in Feature Preview and can be subject to changes at later point.
type ProductBulkCreate {
count: Int!
results: [ProductBulkResult!]!
errors: [ProductBulkCreateError!]!
}
Fields
ProductBulkCreate.count
● Int!
non-null scalar miscellaneous
Returns how many objects were created.
ProductBulkCreate.results
● [ProductBulkResult!]!
non-null object products
List of the created products.
ProductBulkCreate.errors
● [ProductBulkCreateError!]!
non-null object products
Returned By
productBulkCreate
mutation