selectProducts
Mark chosen quoted products for quoted supply points on a quote request as selected.
Arguments
Returns
SelectProductsMark chosen quoted products for quoted supply points on a quote request as selected.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-4619: Quote with given code not found.
- KT-CT-4626: No product selected for the given quote code.
- KT-CT-4634: Quoted product with given id not found.
- KT-CT-4635: Missing a quoted product for at least one quoted supply point on the quote request.
- KT-CT-4636: Quoted product not linked to a product.
- KT-CT-4646: Attempted to select multiple products for the same quoted supply point.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Required Permissions
Can update quotesQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation SelectProducts($input: SelectProductsInput!) {
selectProducts(input: $input) {
success
}
}
Variables
{
"input": SelectProductsInput
}
Response
{
"data": {
"selectProducts": {
"success": true
}
}
}