Files
webapp/graphql/operations/public/geo/GetNode.graphql
Ruslan Bakiev 65b07271d9
All checks were successful
Build Docker Image / build (push) Successful in 4m11s
Simplify GEO API - use new list endpoints and routes in nearestOffers
- Replace GetNodesDocument with HubsListDocument in useCatalogHubs.ts
- Replace GetSupplierProfilesDocument with SuppliersListDocument in useCatalogSuppliers.ts
- Replace manual grouping with ProductsListDocument in useCatalogProducts.ts
- Update nearestOffers to pass hubUuid for server-side route calculation
- Remove RouteToCoordinate calls - routes now included in nearestOffers response
- Delete 15 obsolete GraphQL files
- Add 3 new list endpoints: HubsList, SuppliersList, ProductsList
- Fix TypeScript errors in CalcResultContent, LocationsContent, hubs page, location store
2026-01-26 14:08:21 +07:00

12 lines
152 B
GraphQL

query GetNode($uuid: String!) {
node(uuid: $uuid) {
uuid
name
latitude
longitude
country
countryCode
transportTypes
}
}