All checks were successful
Build Docker Image / build (push) Successful in 5m46s
All geo .graphql operations and consuming code updated to match server schema which uses snake_case field/argument names. Removed non-existent QuoteCalculations query, using NearestOffers instead.
27 lines
401 B
GraphQL
27 lines
401 B
GraphQL
query GetClusteredNodes(
|
|
$west: Float!
|
|
$south: Float!
|
|
$east: Float!
|
|
$north: Float!
|
|
$zoom: Int!
|
|
$transportType: String
|
|
$nodeType: String
|
|
) {
|
|
clustered_nodes(
|
|
west: $west
|
|
south: $south
|
|
east: $east
|
|
north: $north
|
|
zoom: $zoom
|
|
transport_type: $transportType
|
|
node_type: $nodeType
|
|
) {
|
|
id
|
|
latitude
|
|
longitude
|
|
count
|
|
expansion_zoom
|
|
name
|
|
}
|
|
}
|