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.
18 lines
318 B
GraphQL
18 lines
318 B
GraphQL
query NearestHubs($lat: Float!, $lon: Float!, $radius: Float, $productUuid: String, $limit: Int) {
|
|
nearest_hubs(
|
|
lat: $lat
|
|
lon: $lon
|
|
radius: $radius
|
|
product_uuid: $productUuid
|
|
limit: $limit
|
|
) {
|
|
uuid
|
|
name
|
|
latitude
|
|
longitude
|
|
country
|
|
country_code
|
|
transport_types
|
|
}
|
|
}
|