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

@@ -0,0 +1,9 @@
export const toggleWishlistMutation = /* GraphQL */ `
mutation toggleFavorite($productId:ID!){
toggleFavorite(productId:$productId){
items{
id
}
}
}
`