Files
webapp/graphql/operations/public/geo/GetNode.graphql
T

21 lines
286 B
GraphQL

query GetNode($uuid: String!) {
node(uuid: $uuid) {
uuid
name
latitude
longitude
country
countryCode
syncedAt
edges {
toUuid
toName
toLatitude
toLongitude
distanceKm
travelTimeSeconds
transportType
}
}
}