new hudId in order in others queries
This commit is contained in:
@@ -22,7 +22,14 @@ query listApplications @auth(level: USER) {
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
location
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
business {
|
||||
id
|
||||
businessName
|
||||
@@ -78,7 +85,14 @@ query getApplicationById($id: UUID!) @auth(level: USER) {
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
location
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
business {
|
||||
id
|
||||
businessName
|
||||
@@ -135,7 +149,14 @@ query getApplicationsByShiftId($shiftId: UUID!) @auth(level: USER) {
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
location
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
business {
|
||||
id
|
||||
businessName
|
||||
@@ -205,7 +226,14 @@ query getApplicationsByShiftIdAndStatus(
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
location
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
business {
|
||||
id
|
||||
businessName
|
||||
@@ -269,7 +297,14 @@ query getApplicationsByStaffId(
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
location
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
business {
|
||||
id
|
||||
businessName
|
||||
|
||||
@@ -50,9 +50,15 @@ query listInvoices(
|
||||
}
|
||||
order {
|
||||
eventName
|
||||
hub
|
||||
deparment
|
||||
poReference
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -105,9 +111,15 @@ query getInvoiceById($id: UUID!) @auth(level: USER) {
|
||||
}
|
||||
order {
|
||||
eventName
|
||||
hub
|
||||
deparment
|
||||
poReference
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -169,9 +181,15 @@ query listInvoicesByVendorId(
|
||||
}
|
||||
order {
|
||||
eventName
|
||||
hub
|
||||
deparment
|
||||
poReference
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -233,9 +251,15 @@ query listInvoicesByBusinessId(
|
||||
}
|
||||
order {
|
||||
eventName
|
||||
hub
|
||||
deparment
|
||||
poReference
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -297,9 +321,15 @@ query listInvoicesByOrderId(
|
||||
}
|
||||
order {
|
||||
eventName
|
||||
hub
|
||||
deparment
|
||||
poReference
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -361,9 +391,15 @@ query listInvoicesByStatus(
|
||||
}
|
||||
order {
|
||||
eventName
|
||||
hub
|
||||
deparment
|
||||
poReference
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -444,9 +480,15 @@ query filterInvoices(
|
||||
}
|
||||
order {
|
||||
eventName
|
||||
hub
|
||||
deparment
|
||||
poReference
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -512,9 +554,15 @@ query listOverdueInvoices(
|
||||
}
|
||||
order {
|
||||
eventName
|
||||
hub
|
||||
deparment
|
||||
poReference
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -159,7 +159,18 @@ query listRecentPaymentsByStaffId(
|
||||
|
||||
business { id businessName }
|
||||
vendor { id companyName }
|
||||
order { id eventName location }
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -205,7 +216,18 @@ query listRecentPaymentsByApplicationId(
|
||||
amount
|
||||
business { id businessName }
|
||||
vendor { id companyName }
|
||||
order { id eventName location }
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -251,7 +273,18 @@ query listRecentPaymentsByInvoiceId(
|
||||
amount
|
||||
business { id businessName }
|
||||
vendor { id companyName }
|
||||
order { id eventName location }
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -297,7 +330,18 @@ query listRecentPaymentsByStatus(
|
||||
amount
|
||||
business { id businessName }
|
||||
vendor { id companyName }
|
||||
order { id eventName location }
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -344,7 +388,18 @@ query listRecentPaymentsByInvoiceIds(
|
||||
amount
|
||||
business { id businessName }
|
||||
vendor { id companyName }
|
||||
order { id eventName location }
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -411,7 +466,18 @@ query listRecentPaymentsByBusinessId(
|
||||
|
||||
business { id businessName }
|
||||
vendor { id companyName }
|
||||
order { id eventName location }
|
||||
order {
|
||||
id
|
||||
eventName
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -379,7 +379,14 @@ query listShiftRolesByBusinessAndOrder(
|
||||
order{
|
||||
vendorId
|
||||
date
|
||||
location
|
||||
#location
|
||||
|
||||
teamHub {
|
||||
address
|
||||
placeId
|
||||
hubName
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user