Initial commit from monorepo
This commit is contained in:
19
graphql/operations/public/geo/FindRoutes.graphql
Normal file
19
graphql/operations/public/geo/FindRoutes.graphql
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user