InventorySetQuantitiesUserError
An error that occurs during the execution of .
Anchor to FieldsFields
- Anchor to codecode•
The error code.
- Anchor to fieldfield•
The path to the input field that caused the error.
- Anchor to messagemessage•String!non-null
The error message.
Map
No referencing types
Anchor to MutationsMutations
- •mutation
Set quantities of specified name using absolute values. This mutation supports compare-and-set functionality to handle concurrent requests properly. If
is not set to true, the mutation will only update the quantity if the persisted quantity matches the
value. If the
value does not match the persisted value, the mutation will return an error. In order to opt out of the
check, the
argument can be set to true.
NoteOnly use this mutation if calling on behalf of a system that acts as the source of truth for inventory quantities, otherwise please consider using the inventoryAdjustQuantities mutation.
Opting out of the
check can lead to inaccurate inventory quantities if multiple requests are made concurrently. It is recommended to always include the
value to ensure the accuracy of the inventory quantities and to opt out of the check using
only when necessary.