CreateManufacturingRouting
Creates a new manufacturing routing.
Parameters:
| Parameter | Type | Description |
|---|---|---|
input | ManufacturingRoutingInput! | Routing data. |
mutation CreateManufacturingRouting($input: ManufacturingRoutingInput!) {
CreateManufacturingRouting(input: $input) {
id
label
description
active
steps {
id
label
scope
step_type
is_required
weight
}
}
}UpdateManufacturingRouting
Updates an existing manufacturing routing.
Parameters:
| Parameter | Type | Description |
|---|---|---|
id | ID! | Routing ID. |
input | ManufacturingRoutingInput! | Updated fields. |
DeleteManufacturingRouting
Deletes a manufacturing routing.
Parameters:
| Parameter | Type | Description |
|---|---|---|
id | ID! | Routing ID. |
ManufacturingRoutingInput data type
| Field | Type | Description |
|---|---|---|
id | ID | ID for updates. |
label | String | Routing name. |
description | String | Optional description. |
active | Boolean | Whether active. |
steps | [ManufacturingRoutingStepInput] | Routing steps. |
ManufacturingRoutingStepInput data type
| Field | Type | Description |
|---|---|---|
id | ID | ID for updates. |
label | String | Step name. |
description | String | Optional description. |
scope | ManufacturingRoutingStepScope | Step scope. |
step_type | ManufacturingRoutingStepType | Step type. |
is_required | Boolean | Whether required. |
weight | Int | Step order. |
