mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
10 lines
170 B
GraphQL
10 lines
170 B
GraphQL
query GetFeaturedProducts($first: Int!) {
|
|
products(first: $first, channel: "default-channel") {
|
|
edges {
|
|
node {
|
|
...FeaturedProduct
|
|
}
|
|
}
|
|
}
|
|
}
|