Files
webapp/graphql/operations/public/exchange/GetSupplierProfiles.graphql
2026-01-07 09:10:35 +07:00

18 lines
430 B
GraphQL

query GetSupplierProfiles($country: String, $isVerified: Boolean, $limit: Int, $offset: Int) {
getSupplierProfiles(country: $country, isVerified: $isVerified, limit: $limit, offset: $offset) {
uuid
teamUuid
name
description
country
countryCode
logoUrl
isVerified
isActive
offersCount
latitude
longitude
}
getSupplierProfilesCount(country: $country, isVerified: $isVerified)
}