Warehouse
No description
type Warehouse {
id: ID!
addressId: Int
address: WarehouseAddress
name: String!
description: String!
notes: String!
isActive: Boolean!
isStore: Boolean!
isPickupLocation: Boolean!
shopId: Int
businessHours: [BusinessHours!]!
createdAt: DateTime!
lastModifiedAt: DateTime!
}
Fields
Warehouse.id
● ID!
non-null scalar
Warehouse primary identifier
Warehouse.addressId
● Int
scalar
Address identifier associated with the warehouse
Warehouse.address
● WarehouseAddress
object
Warehouse Address
Warehouse.name
● String!
non-null scalar
Warehouse name
Warehouse.description
● String!
non-null scalar
Warehouse description
Warehouse.notes
● String!
non-null scalar
Warehouse notes
Warehouse.isActive
● Boolean!
non-null scalar
Warehouse isActive status
Warehouse.isStore
● Boolean!
non-null scalar
Warehouse isStore status
Warehouse.isPickupLocation
● Boolean!
non-null scalar
Warehouse isPickupLocation status
Warehouse.shopId
● Int
scalar
Optional warehouse shopId
Warehouse.businessHours
● [BusinessHours!]!
non-null object
Warehouse business hours per week day
Warehouse.createdAt
● DateTime!
non-null scalar
Warehouse initial creation timestamp
Warehouse.lastModifiedAt
● DateTime!
non-null scalar
Warehouse last update timestamp
Returned By
warehouse
query ● warehouseCreate
mutation ● warehouseDelete
mutation ● warehouseUpdate
mutation
Member Of
Carrier
object ● CartPostageData
object ● InventoryResponse
object ● OrderPostageData
object ● TenderPostage
object ● WarehousesResponse
object