7 lines
205 B
GraphQL
7 lines
205 B
GraphQL
query GetRailRoute($fromLat: Float!, $fromLon: Float!, $toLat: Float!, $toLon: Float!) {
|
|
railRoute(fromLat: $fromLat, fromLon: $fromLon, toLat: $toLat, toLon: $toLon) {
|
|
distanceKm
|
|
geometry
|
|
}
|
|
}
|