Merge pull request #74 from KieIO/feature/m2-featured-product

Get featured product, fresh product
This commit is contained in:
lytrankieio123
2021-10-05 09:12:10 +07:00
committed by GitHub
27 changed files with 718 additions and 272 deletions

View File

@@ -0,0 +1,17 @@
export const getAllFacetsQuery = /* GraphQL */ `
query facets ($options: FacetListOptions) {
facets (options: $options){
totalItems,
items {
id
name
code
values {
id
name
code
}
}
}
}
`