mirror of
https://github.com/vercel/commerce.git
synced 2025-07-27 04:01:23 +00:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
export const toggleWishlistMutation = /* GraphQL */ `
|
|
mutation toggleFavorite($productId:ID!){
|
|
toggleFavorite(productId:$productId){
|
|
items{
|
|
id
|
|
}
|
|
}
|
|
}
|
|
`
|