commerce/lib/saleor/fragments/FeaturedProductFragment.graphql
Michal Miszczyszyn a8e49ee3f4
Saleor
2023-05-02 00:32:20 +02:00

47 lines
561 B
GraphQL

fragment FeaturedProduct on Product {
id
slug
name
isAvailableForPurchase
description
seoTitle
seoDescription
pricing {
priceRange {
start {
gross {
currency
amount
}
}
stop {
gross {
currency
amount
}
}
}
}
media {
url(size: 2160)
type
alt
}
collections {
name
}
updatedAt
variants {
id
name
pricing {
price {
gross {
currency
amount
}
}
}
}
}