Some checks failed
Build Docker Image / build (push) Failing after 1m35s
- Replace FindProductRoutesDocument with GetOffersToHubDocument - Replace FindSupplierProductHubsDocument with GetOffersBySupplierProductDocument + GetHubsNearOfferDocument - Update all catalog pages to use new query naming convention - Add new GraphQL operation files, remove deprecated ones
17 lines
337 B
GraphQL
17 lines
337 B
GraphQL
query GetOffersBySupplierProduct($supplierUuid: String!, $productUuid: String!) {
|
|
offersBySupplierProduct(supplierUuid: $supplierUuid, productUuid: $productUuid) {
|
|
uuid
|
|
productUuid
|
|
productName
|
|
supplierUuid
|
|
latitude
|
|
longitude
|
|
country
|
|
countryCode
|
|
pricePerUnit
|
|
currency
|
|
quantity
|
|
unit
|
|
}
|
|
}
|