Hi,
According to the documentation the code below will add one product to the basket.
Is it possible to add multiple products to the basket by calling basketAddProduct only once?If so could you please let me know how the mutation would look like?
mutation {
basketAddProduct(
basketId: "310e50a2b1be309b255d70462cd75507",
productId:"05848170643ab0deb9914566391c0c63",
amount: 1
) {
items {
amount
product {
id
title
}
}
}
}
Thanks in advance
David