mirror of
https://github.com/vercel/commerce.git
synced 2025-05-22 09:26:59 +00:00
19 lines
335 B
GraphQL
19 lines
335 B
GraphQL
query SearchProducts(
|
|
$search: String!
|
|
$sortBy: ProductOrderField!
|
|
$sortDirection: OrderDirection!
|
|
) {
|
|
products(
|
|
first: 100
|
|
channel: "default-channel"
|
|
sortBy: { field: $sortBy, direction: $sortDirection }
|
|
filter: { search: $search }
|
|
) {
|
|
edges {
|
|
node {
|
|
...FeaturedProduct
|
|
}
|
|
}
|
|
}
|
|
}
|