Files
webapp/graphql/operations/public/geo/GetClusteredNodes.graphql
Ruslan Bakiev 755a92d194
All checks were successful
Build Docker Image / build (push) Successful in 5m1s
feat(catalog): filter map clusters by chips
2026-02-07 08:35:22 +07:00

33 lines
547 B
GraphQL

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