Files
graphql-api-js/queries.graphql
T
2021-04-08 23:11:24 +02:00

124 lines
1.5 KiB
GraphQL

{
products(limit: 10000, browsable: true, visible: true) {
id
inserted
updated
visible
browsable
printProducts {
group
id
updated
}
blacklisting {
group
id
marketId
updated
}
}
}
{
product(id: 42280) {
id
inserted
updated
visible
browsable
designerId
designer {
id
name
path
}
printProducts {
group
id
updated
}
blacklisting {
group
id
marketId
updated
}
}
}
{
orders(
filter: { limit: 1, dates: { from: "2021-03-01", to: "2021-04-30" } }
) {
id
marketObject {
id
name
vat
currency
priceAdjustment
}
rows {
id
order {
id
}
inserted
orderId
productId
productGroup
artNo
path
name
price
designerId
commissionAmount
status
pwintyImageId
frameColor
pwintySku
}
}
}
{
order(id: 588274) {
id
marketObject {
id
name
vat
currency
priceAdjustment
}
rows {
id
order {
id
}
inserted
orderId
productId
productGroup
artNo
path
name
price
designerId
commissionAmount
status
pwintyImageId
frameColor
pwintySku
}
}
}
{
designers(limit: 10) {
id
name
path
}
}