Show map by default on /catalog, add offersCount to products
All checks were successful
Build Docker Image / build (push) Successful in 3m27s
All checks were successful
Build Docker Image / build (push) Successful in 3m27s
- Change displayMode from 'hero' to 'map-default' for /catalog - Always show map on catalog page (fullWidthMap when no selectMode) - Add offersCount to GetProducts, GetProductsBySupplier, GetProductsNearHub - Remove CatalogHero from catalog page (hero content stays on /)
This commit is contained in:
@@ -2,5 +2,6 @@ query GetProducts {
|
||||
products {
|
||||
uuid
|
||||
name
|
||||
offersCount
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,5 +2,6 @@ query GetProductsBySupplier($supplierUuid: String!) {
|
||||
productsBySupplier(supplierUuid: $supplierUuid) {
|
||||
uuid
|
||||
name
|
||||
offersCount
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,5 +2,6 @@ query GetProductsNearHub($hubUuid: String!, $radiusKm: Float) {
|
||||
productsNearHub(hubUuid: $hubUuid, radiusKm: $radiusKm) {
|
||||
uuid
|
||||
name
|
||||
offersCount
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user