33 lines
547 B
GraphQL
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
|
|
}
|
|
}
|