Files
commerce/framework/vendure/utils/mutations/toggle-wishlist-mutation.tsx
2021-10-11 09:59:46 +07:00

10 lines
215 B
TypeScript

export const toggleWishlistMutation = /* GraphQL */ `
mutation toggleFavorite($productId:ID!){
toggleFavorite(productId:$productId){
items{
id
}
}
}
`