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

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