15 lines
284 B
GraphQL
15 lines
284 B
GraphQL
query {
|
|
getProducts(input: { take: 10 }) {
|
|
items {
|
|
phxId: id
|
|
id: identifier
|
|
name: description
|
|
manufacturer_number: mpn
|
|
ean: gtin,
|
|
extra: addition,
|
|
quantity_unit: unit { identifier }
|
|
productType
|
|
inactive: inactive
|
|
}
|
|
}
|
|
} |