Files
webapp/graphql/operations/public/geo/SuppliersList.graphql
Ruslan Bakiev b02e3882cc
Some checks failed
Build Docker Image / build (push) Has been cancelled
feat(catalog): add bounds filtering to list queries
- Add west/south/east/north params to HubsList, SuppliersList, ProductsList GraphQL
- Update useCatalogHubs to pass bounds to query
- Update useCatalogSuppliers to pass bounds to query
- Update useCatalogProducts to pass bounds to query
2026-01-26 21:37:23 +07:00

9 lines
301 B
GraphQL

query SuppliersList($limit: Int, $offset: Int, $country: String, $west: Float, $south: Float, $east: Float, $north: Float) {
suppliersList(limit: $limit, offset: $offset, country: $country, west: $west, south: $south, east: $east, north: $north) {
uuid
name
latitude
longitude
}
}