mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
47 lines
561 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|