40 lines
657 B
GraphQL
40 lines
657 B
GraphQL
query GetTeamOrders {
|
|
getTeamOrders {
|
|
uuid
|
|
name
|
|
status
|
|
totalAmount
|
|
currency
|
|
sourceLocationName
|
|
destinationLocationName
|
|
createdAt
|
|
orderLines {
|
|
uuid
|
|
productName
|
|
quantity
|
|
unit
|
|
}
|
|
stages {
|
|
uuid
|
|
name
|
|
stageType
|
|
transportType
|
|
sourceLatitude
|
|
sourceLongitude
|
|
destinationLatitude
|
|
destinationLongitude
|
|
sourceLocationName
|
|
destinationLocationName
|
|
trips {
|
|
uuid
|
|
name
|
|
plannedLoadingDate
|
|
actualLoadingDate
|
|
plannedUnloadingDate
|
|
actualUnloadingDate
|
|
realLoadingDate
|
|
}
|
|
}
|
|
}
|
|
}
|