Files
webapp/graphql/operations/public/geo/NearestHubs.graphql
Ruslan Bakiev 28eff7c323
All checks were successful
Build Docker Image / build (push) Successful in 5m4s
feat(catalog): pad map fit and graph hubs filter
2026-02-07 10:18:07 +07:00

19 lines
358 B
GraphQL

query NearestHubs($lat: Float!, $lon: Float!, $radius: Float, $productUuid: String, $limit: Int, $useGraph: Boolean) {
nearestHubs(
lat: $lat
lon: $lon
radius: $radius
productUuid: $productUuid
limit: $limit
useGraph: $useGraph
) {
uuid
name
latitude
longitude
country
countryCode
transportTypes
}
}