Skip to main content

BusinessHours

Operating hours configuration for a specific day of the week.

Defines when the warehouse is operational including opening/closing times and lunch break periods. Used for scheduling operations and customer communication about availability.

type BusinessHours {
dayOfWeek: Float!
openingTime: String
closingTime: String
lunchBeakStartTime: String
lunchBeakEndTime: String
}

Fields

BusinessHours.dayOfWeek ● Float! non-null scalar

Day of the week identifier.

Numeric representation where 0=Sunday, 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday. Used to define operating schedules for each day.

BusinessHours.openingTime ● String scalar

Warehouse opening time for this day.

Time when the warehouse begins operations in 24-hour format (HH:MM). If null, the warehouse is closed for the entire day.

BusinessHours.closingTime ● String scalar

Warehouse closing time for this day.

Time when the warehouse ends operations in 24-hour format (HH:MM). If null, the warehouse is closed for the entire day.

BusinessHours.lunchBeakStartTime ● String scalar

Start time of lunch break period.

Time when lunch break begins in 24-hour format (HH:MM). During this period, warehouse operations may be limited or suspended.

BusinessHours.lunchBeakEndTime ● String scalar

End time of lunch break period.

Time when lunch break ends in 24-hour format (HH:MM). Operations resume to full capacity after this time.

Member Of

Warehouse object