WarehouseStatus

(OBJECT)

Warehouse status definition

link GraphQL Schema definition

  • type WarehouseStatus implements IStatus {
  • # Internal warehouse status ID
  • id: ID!
  • # Status name
  • name: String!
  • # RGB color in hexa notation (e.g. #A45594)
  • color: Color
  • # Status image
  • image: Url
  • # text note
  • note: String
  • # allow ordering of item having this WH status
  • allow_order: Boolean!
  • # show product on public e-shop
  • show_product: Boolean!
  • # default delivery in days
  • delivery_in_days: Int
  • # daily deadline for propagated delivery
  • # You must place order before the time of day (specific hour) to be entitled for
  • # the 'delivery_in_days' expected delivery.
  • order_deadline: TimeOfDay
  • }

link Require by