input UpdateLotInput
GraphQL input type for Lot update.
Fields
| Field | Type | Description |
|---|---|---|
lot_id | String! | Public API lot ID that identifies the related record. |
name | String | Human-readable name for this lot. |
sku | String | SKU. SKU matching is case-insensitive and ignores surrounding whitespace. |
expires_at | ISODateTime | Expires at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
is_active | Boolean | Whether this lot is active. |
Referenced By
- lot_update Mutation
Example
{
"lot_id": "TG90OjEyMzQ=",
"name": "LOT-2026-001",
"sku": "BLUE-TEE-M",
"expires_at": "2026-07-09T15:30:00Z",
"is_active": true
}