Przejdź do głównej zawartości
Wersja: Aktualna

Single customer price

custPrices/:clientCode/:limit/:offset

query custPrices ($clientCode: String!, $limit: Int!, $offset: Int!) {
cust_prices(where: {client_code:{_eq:$clientCode}}, limit: $limit, offset: $offset) {
id
price
product {
name
main_group
code
}
}
}