Files
webapp/graphql/operations/team/orders/GetTeamOrders.graphql
Ruslan Bakiev d6865d2129
Some checks failed
Build Docker Image / build (push) Failing after 1m29s
UI improvements: filters, map layout, search bar
- Add hubCountries query and country filter for hubs page
- Add getAvailableProducts query for offers (only products with active offers)
- Add sourceLatitude/sourceLongitude to orders GraphQL
- Fix ListMapLayout with position fixed for proper map height
- GlobalSearchBar: make fields wider, remove unit selector
- Remove status/isVerified filters from suppliers/offers (backend handles this)
2026-01-08 10:42:59 +07:00

42 lines
696 B
GraphQL

query GetTeamOrders {
getTeamOrders {
uuid
name
status
totalAmount
currency
sourceLocationName
sourceLatitude
sourceLongitude
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
}
}
}
}