adding hubid to order
This commit is contained in:
@@ -2,7 +2,7 @@ mutation createOrder(
|
||||
$vendorId: UUID
|
||||
$businessId: UUID!
|
||||
$orderType: OrderType!
|
||||
$location: String
|
||||
#$location: String
|
||||
$status: OrderStatus
|
||||
$date: Timestamp
|
||||
$startDate: Timestamp
|
||||
@@ -14,7 +14,7 @@ mutation createOrder(
|
||||
$assignedStaff: Any
|
||||
$shifts: Any
|
||||
$requested: Int
|
||||
$hub: String
|
||||
$teamHubId: UUID!
|
||||
$recurringDays: Any
|
||||
$permanentStartDate: Timestamp
|
||||
$permanentDays: Any
|
||||
@@ -27,7 +27,7 @@ mutation createOrder(
|
||||
vendorId: $vendorId
|
||||
businessId: $businessId
|
||||
orderType: $orderType
|
||||
location: $location
|
||||
#location: $location
|
||||
status: $status
|
||||
date: $date
|
||||
startDate: $startDate
|
||||
@@ -39,7 +39,7 @@ mutation createOrder(
|
||||
assignedStaff: $assignedStaff
|
||||
shifts: $shifts
|
||||
requested: $requested
|
||||
hub: $hub
|
||||
teamHubId: $teamHubId
|
||||
recurringDays: $recurringDays
|
||||
permanentDays: $permanentDays
|
||||
notes: $notes
|
||||
@@ -53,7 +53,7 @@ mutation updateOrder(
|
||||
$id: UUID!
|
||||
$vendorId: UUID
|
||||
$businessId: UUID
|
||||
$location: String
|
||||
#$location: String
|
||||
$status: OrderStatus
|
||||
$date: Timestamp
|
||||
$startDate: Timestamp
|
||||
@@ -63,7 +63,7 @@ mutation updateOrder(
|
||||
$assignedStaff: Any
|
||||
$shifts: Any
|
||||
$requested: Int
|
||||
$hub: String
|
||||
$teamHubId: UUID!
|
||||
$recurringDays: Any
|
||||
$permanentDays: Any
|
||||
$notes: String
|
||||
@@ -75,7 +75,7 @@ mutation updateOrder(
|
||||
data: {
|
||||
vendorId: $vendorId
|
||||
businessId: $businessId
|
||||
location: $location
|
||||
#location: $location
|
||||
status: $status
|
||||
date: $date
|
||||
startDate: $startDate
|
||||
@@ -85,7 +85,7 @@ mutation updateOrder(
|
||||
assignedStaff: $assignedStaff
|
||||
shifts: $shifts
|
||||
requested: $requested
|
||||
hub: $hub
|
||||
teamHubId: $teamHubId
|
||||
recurringDays: $recurringDays
|
||||
permanentDays: $permanentDays
|
||||
notes: $notes
|
||||
|
||||
Reference in New Issue
Block a user