feat: create toggle product wishlist

This commit is contained in:
Quangnhankie
2021-10-11 09:59:46 +07:00
parent 391bba5d31
commit 279c20e1af
10 changed files with 118 additions and 19 deletions

View File

@@ -1,3 +1,5 @@
import { searchResultFragment } from '../fragments/search-result-fragment'
export const activeCustomerQuery = /* GraphQL */ `
query activeCustomer {
activeCustomer {
@@ -9,6 +11,15 @@ export const activeCustomerQuery = /* GraphQL */ `
items{
product{
id
name
slug
assets{
source
preview
}
variants{
price
}
}
}
}