adding hubid to order

This commit is contained in:
José Salazar
2026-01-29 15:17:34 -05:00
parent 0afb89e86a
commit aa450c7cbe
3 changed files with 67 additions and 24 deletions

View File

@@ -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