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

14 lines
296 B
GraphQL

query GetNodes($limit: Int, $offset: Int, $transportType: String) {
nodes(limit: $limit, offset: $offset, transportType: $transportType) {
uuid
name
latitude
longitude
country
countryCode
syncedAt
transportTypes
}
nodesCount(transportType: $transportType)
}