mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
const createWishlist = /*GraphQL*/`
|
|
mutation createWishlist($wishlistInput:WishlistInput!) {
|
|
createWishlist(wishlistInput:$wishlistInput){
|
|
id
|
|
name
|
|
customerAccountId
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default createWishlist; |