Files
webapp/graphql/operations/public/geo/GetHubsNearOffer.graphql
Ruslan Bakiev 2253cd20b0
Some checks failed
Build Docker Image / build (push) Failing after 1m35s
Update catalog pages to use new geo queries
- 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
2026-01-16 15:40:06 +07:00

12 lines
213 B
GraphQL

query GetHubsNearOffer($offerUuid: String!, $limit: Int) {
hubsNearOffer(offerUuid: $offerUuid, limit: $limit) {
uuid
name
latitude
longitude
country
countryCode
transportTypes
}
}