scandipwa/wishlist-graphql

N/A

Installs: 175 900

Dependents: 2

Suggesters: 0

Security: 0

Stars: 4

Watchers: 7

Forks: 13

Type:magento2-module

2.0.17 2023-04-12 07:24 UTC

README

WishlistGraphQl provides additional resolvers for wishlist, extending Magento_WishlistGraphQl.

SaveWishlistItem

This endpoint allows to save Wishlist item

mutation SaveWishlistItem($wishlistItem: WishlistItemInput!) {
    saveWishlistItem(wishlistItem: $wishlistItem) {
         id
         sku
         qty
         description
         added_at
         product
    }
}
{
   "wishlistItem": {
       "sku": "n31189077-1",
       "quantity": 2,
       "description": "Description",
       "product_option": {
           "extension_attributes": {}
       }
   }
}

RemoveProductFromWishlist

This endpoint allows removing item from wishlist

mutation RemoveProductFromWishlist($item_id: ID!) {
    removeProductFromWishlist(item_id: $item_id)
}
{
   "item_id": 1
}

MoveWishlistToCart

This endpoint allows to move all wishlist items to cart

mutation MoveWishlistToCart {
    moveWishlistToCart()
}

ClearWishlist

This endpoint allows to clear wishlist

mutation ClearWishlist {
    clearWishlist()
}