Files
webapp/graphql/operations/public/geo/FindRoutes.graphql
2026-01-07 09:10:35 +07:00

20 lines
373 B
GraphQL

query FindRoutes($fromUuid: String!, $toUuid: String!, $limit: Int) {
findRoutes(fromUuid: $fromUuid, toUuid: $toUuid, limit: $limit) {
totalDistanceKm
totalTimeSeconds
stages {
fromUuid
fromName
fromLat
fromLon
toUuid
toName
toLat
toLon
distanceKm
travelTimeSeconds
transportType
}
}
}