All checks were successful
Build Docker Image / build (push) Successful in 4m57s
- /hubs/[id]: use findProductsForHub to show only deliverable products - /offers/[productId]: use findHubsForProduct to show only reachable hubs - /suppliers/[id]/[productId]: use findSupplierProductHubs for supplier-specific hubs - Add new GraphQL operations for geo queries
12 lines
198 B
GraphQL
12 lines
198 B
GraphQL
query FindHubsForProduct($productUuid: String!) {
|
|
findHubsForProduct(productUuid: $productUuid) {
|
|
uuid
|
|
name
|
|
latitude
|
|
longitude
|
|
country
|
|
countryCode
|
|
transportTypes
|
|
}
|
|
}
|