mirror of
https://github.com/vercel/commerce.git
synced 2025-05-20 16:36:59 +00:00
13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import { searchResultFragment } from '../fragments/search-result-fragment'
|
|
|
|
export const getAllProductsQuery = /* GraphQL */ `
|
|
query getAllProducts($input: SearchInput!) {
|
|
search(input: $input) {
|
|
items {
|
|
...SearchResult
|
|
}
|
|
}
|
|
}
|
|
${searchResultFragment}
|
|
`
|