Files
webapp/graphql/operations/team/orders/GetOrder.graphql
2026-01-07 09:10:35 +07:00

64 lines
1.1 KiB
GraphQL

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