14 lines
200 B
GraphQL
14 lines
200 B
GraphQL
query GetSupplierProfile($uuid: String!) {
|
|
getSupplierProfile(uuid: $uuid) {
|
|
uuid
|
|
teamUuid
|
|
name
|
|
description
|
|
country
|
|
logoUrl
|
|
isVerified
|
|
isActive
|
|
offersCount
|
|
}
|
|
}
|