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

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
}
}
}