Skip to main content

CartItemBulkInput

No description

input CartItemBulkInput {
itemId: String
productId: Int
clusterId: Int
price: Float
quantity: Int
notes: String
requestDate: String
childItems: [CartChildItemBulkInput!]
}

Fields

CartItemBulkInput.itemId ● String scalar

CartItem unique identifier

CartItemBulkInput.productId ● Int scalar

Product unique identifier

CartItemBulkInput.clusterId ● Int scalar

Cluster ID the item belongs to. Any child items provided must be part of the cluster's configuration as well.

CartItemBulkInput.price ● Float scalar

Cart item unit price. Defaults to calculated price. Only use for external pricing.

CartItemBulkInput.quantity ● Int scalar

Item quantity in cart, defaults to 1. If updated with null value quantity will be set to 1.

CartItemBulkInput.notes ● String scalar

Item notes

CartItemBulkInput.requestDate ● String scalar

Requested delivery date for this item

CartItemBulkInput.childItems ● [CartChildItemBulkInput!] list input

Adds child items to this cart item, this field is used when adding configurable clusters to the Cart.

Member Of

CartItemsBulkUpsertInput input