Initial commit from monorepo
This commit is contained in:
63
graphql/operations/team/orders/GetOrder.graphql
Normal file
63
graphql/operations/team/orders/GetOrder.graphql
Normal file
@@ -0,0 +1,63 @@
|
||||
query GetOrder($orderUuid: String!) {
|
||||
getOrder(orderUuid: $orderUuid) {
|
||||
uuid
|
||||
name
|
||||
status
|
||||
totalAmount
|
||||
currency
|
||||
sourceLocationName
|
||||
destinationLocationName
|
||||
createdAt
|
||||
notes
|
||||
orderLines {
|
||||
uuid
|
||||
productName
|
||||
quantity
|
||||
unit
|
||||
subtotal
|
||||
}
|
||||
stages {
|
||||
uuid
|
||||
name
|
||||
stageType
|
||||
transportType
|
||||
sourceLocationName
|
||||
sourceLatitude
|
||||
sourceLongitude
|
||||
destinationLocationName
|
||||
destinationLatitude
|
||||
destinationLongitude
|
||||
locationName
|
||||
locationLatitude
|
||||
locationLongitude
|
||||
selectedCompany {
|
||||
uuid
|
||||
name
|
||||
taxId
|
||||
country
|
||||
countryCode
|
||||
active
|
||||
}
|
||||
trips {
|
||||
uuid
|
||||
name
|
||||
plannedLoadingDate
|
||||
actualLoadingDate
|
||||
plannedUnloadingDate
|
||||
actualUnloadingDate
|
||||
realLoadingDate
|
||||
plannedWeight
|
||||
weightAtLoading
|
||||
weightAtUnloading
|
||||
company {
|
||||
uuid
|
||||
name
|
||||
taxId
|
||||
country
|
||||
countryCode
|
||||
active
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user