Files
webapp/graphql/operations/public/geo/SuppliersList.graphql
Ruslan Bakiev 25f946b293
All checks were successful
Build Docker Image / build (push) Successful in 5m46s
Fix geo GraphQL schema mismatch: camelCase → snake_case
All geo .graphql operations and consuming code updated to match
server schema which uses snake_case field/argument names.
Removed non-existent QuoteCalculations query, using NearestOffers instead.
2026-03-09 21:45:57 +07:00

9 lines
302 B
GraphQL

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