All checks were successful
Build Docker Image / build (push) Successful in 5m0s
Geo backend was migrated to camelCase but frontend .graphql files and component code still used snake_case, causing 400 errors on all geo API calls.
18 lines
314 B
GraphQL
18 lines
314 B
GraphQL
query NearestHubs($lat: Float!, $lon: Float!, $radius: Float, $productUuid: String, $limit: Int) {
|
|
nearestHubs(
|
|
lat: $lat
|
|
lon: $lon
|
|
radius: $radius
|
|
productUuid: $productUuid
|
|
limit: $limit
|
|
) {
|
|
uuid
|
|
name
|
|
latitude
|
|
longitude
|
|
country
|
|
countryCode
|
|
transportTypes
|
|
}
|
|
}
|