commerce/packages/vendure/utils/queries/get-all-products-query.ts
2022-01-14 23:44:08 -05:00

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}
`