You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
The `addRequisitionListItemsToCart` mutation adds requisition list items to the cart.
7
+
The `addRequisitionListItemsToCart` mutation adds requisition list items to the cart. The requisition list does not change after adding items to the cart.
8
8
9
9
This mutation requires a valid [customer authentication token]({{page.baseurl}}/graphql/mutations/generate-customer-token.html).
10
10
@@ -108,27 +108,29 @@ The `addRequisitionListItemsToCart` object returns the status, cart and errors o
108
108
109
109
Attribute | Data Type | Description
110
110
--- | --- | ---
111
-
`add_requisition_list_items_to_cart_user_errors` | [[AddRequisitionListItemToCartUserError!](#AddRequisitionListItemToCartUserError)] | Indicates why the attempt to add items to the requistion list was not successful
112
-
`cart` | [Cart](#CartObject) | The cart after adding requisition list items.
111
+
`add_requisition_list_items_to_cart_user_errors` | [[AddRequisitionListItemToCartUserError!](#AddRequisitionListItemToCartUserError)] | Indicates why the attempt to add items to the requisition list was not successful
112
+
`cart` | [Cart](#CartObject) | The cart after adding requisition list items
113
113
`status` | Boolean! | Indicates whether the attempt to add items to the requisition list was successful
The `AddRequisitionListItemToCartUserError` type contains the list of errors which indicates why the attempt to add items to the requistion list was not successful.
117
+
The `AddRequisitionListItemToCartUserError` type contains the list of errors that describe why the attempt to add items to the requistion list was not successful.
118
118
119
119
Attribute | Data Type | Description
120
120
--- | --- | ---
121
121
`message` | String! | A description of the error
122
-
`type` | [AddRequisitionListItemToCartUserErrorType!](#AddRequisitionListItemToCartUserErrorType) | The Error type
122
+
`type` | [AddRequisitionListItemToCartUserErrorType!](#AddRequisitionListItemToCartUserErrorType) | The error type
0 commit comments