mirror of
https://github.com/vercel/commerce.git
synced 2025-03-27 15:55:54 +00:00
14 lines
287 B
TypeScript
14 lines
287 B
TypeScript
import { searchResultFragment } from '../fragments/search-result-fragment'
|
|
|
|
export const searchQuery = /* GraphQL */ `
|
|
query search($input: SearchInput!) {
|
|
search(input: $input) {
|
|
items {
|
|
...SearchResult
|
|
}
|
|
totalItems
|
|
}
|
|
}
|
|
${searchResultFragment}
|
|
`
|