Files
webapp/graphql/operations/public/geo/GetClusteredNodes.graphql
Ruslan Bakiev 43310f5c28
All checks were successful
Build Docker Image / build (push) Successful in 4m37s
Enable server-side clustering on all catalog pages
- Add clusterNodeType prop to CatalogPage
- Update useClusteredNodes to accept nodeType parameter
- Enable server clustering on /offers and /suppliers pages
- Add hoveredId sync on /offers page
- Remove hover:shadow-lg animation from Card
2026-01-16 17:32:59 +07:00

27 lines
397 B
GraphQL

query GetClusteredNodes(
$west: Float!
$south: Float!
$east: Float!
$north: Float!
$zoom: Int!
$transportType: String
$nodeType: String
) {
clusteredNodes(
west: $west
south: $south
east: $east
north: $north
zoom: $zoom
transportType: $transportType
nodeType: $nodeType
) {
id
latitude
longitude
count
expansionZoom
name
}
}