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.
12 lines
397 B
GraphQL
12 lines
397 B
GraphQL
query HubsList($limit: Int, $offset: Int, $country: String, $transportType: String, $west: Float, $south: Float, $east: Float, $north: Float) {
|
|
hubs_list(limit: $limit, offset: $offset, country: $country, transport_type: $transportType, west: $west, south: $south, east: $east, north: $north) {
|
|
uuid
|
|
name
|
|
latitude
|
|
longitude
|
|
country
|
|
country_code
|
|
transport_types
|
|
}
|
|
}
|