mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +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
|
|
}
|
|
}
|
|
}
|
|
`
|