ResourceStatus
Type: Object
Represents the status of a production resource (like a printing press or finishing machine) at a specific point in time. It captures operational state such as 'Idle', 'Running', or 'Maintenance', along with performance data like speed and production totals. This is essential for real-time monitoring and historical analysis of factory floor efficiency.
Fields
| Name | Type | Args | Description | Deprecated |
|---|---|---|---|---|
| id | ID! | |||
| resource | Resource! | The resource this status belongs to. | ||
| resourceId | ID! | |||
| speed | Int | The speed of the resource, if applicable. | ||
| status | String! | The status of the resource (e.g., 'Idle', 'Running', 'Maintenance'). | ||
| statusDetail | String | Additional details about the status. | ||
| timestamp | DateTime! | The timestamp when the status was recorded. | ||
| totals | [Dictionary!] | An array of key-value pairs representing various totals related to the resource status. | ||
| unit | String | The unit of measurement for the speed, if applicable. |