All checks were successful
Build Docker Image / build (push) Successful in 4m37s
- 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
27 lines
397 B
GraphQL
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
|
|
}
|
|
}
|