object WorkOrderIdentifiableType
Fields
| Field | Type | Description |
|---|---|---|
id | String | |
legacy_id | Int | |
account_id | ID | |
warehouse_id | ID | |
name | String | |
configuration | String | |
type | WorkOrderType | |
scheduled_date | DateTime | |
requested_date | DateTime | |
started_at | DateTime | |
ended_at | DateTime | |
ready_to_pick_at | DateTime | |
assembly_in_progress_at | DateTime | |
completed_at | DateTime | |
created_at | DateTime | |
updated_at | DateTime | |
status | WorkOrderStatus | |
has_special_project | Boolean | |
priority | WorkOrderPriority | |
notes | [WorkOrderNotesType] | |
assembly_sku | WorkOrderAssemblySkuType |
Referenced By
- WorkOrderAssignPickLocationsOutput Type
- WorkOrderIdentifiableTypeEdge Type
- WorkOrderMutationOutput Type
- WorkOrderQueryResult Type
Example
{
"id": "abc123",
"legacy_id": 987,
"account_id": "abc123",
"warehouse_id": "abc123",
"name": "abc123",
"configuration": "abc123",
"type": "ASSEMBLY",
"scheduled_date": "abc123",
"requested_date": "abc123",
"started_at": "abc123",
"ended_at": "abc123",
"ready_to_pick_at": "abc123",
"assembly_in_progress_at": "abc123",
"completed_at": "abc123",
"created_at": "abc123",
"updated_at": "abc123",
"status": "PENDING_APPROVAL",
"has_special_project": true,
"priority": "HIGH",
"notes": WorkOrderNotesType,
"assembly_sku": WorkOrderAssemblySkuType
}