Some checks failed
Build Docker Image / build (push) Failing after 1m29s
- Add hubCountries query and country filter for hubs page - Add getAvailableProducts query for offers (only products with active offers) - Add sourceLatitude/sourceLongitude to orders GraphQL - Fix ListMapLayout with position fixed for proper map height - GlobalSearchBar: make fields wider, remove unit selector - Remove status/isVerified filters from suppliers/offers (backend handles this)
16 lines
330 B
GraphQL
16 lines
330 B
GraphQL
query GetSupplierProfiles($country: String, $limit: Int, $offset: Int) {
|
|
getSupplierProfiles(country: $country, limit: $limit, offset: $offset) {
|
|
uuid
|
|
teamUuid
|
|
name
|
|
description
|
|
country
|
|
countryCode
|
|
logoUrl
|
|
offersCount
|
|
latitude
|
|
longitude
|
|
}
|
|
getSupplierProfilesCount(country: $country)
|
|
}
|