64 lines
1.1 KiB
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|