Wishlist
The Wishlist menu lets a signed-in customer save products for later. A client uses it to power the "save to wishlist" heart icon, the wishlist page, and the "move to cart" action.
When you use it
The wishlist is per-customer and scoped to the current channel. A customer can add a product (or toggle it on and off), list everything saved, view one item, move an item into the cart, remove an item, or clear the whole wishlist at once. The wishlist is a customer feature — it is not available to guests.
Operations in this menu
| Operation | GraphQL field |
|---|---|
| Get Wishlists | wishlists query |
| Get Wishlist Item | wishlist(id:) query |
| Create Wishlist | createWishlist mutation |
| Toggle Wishlist | toggleWishlist mutation |
| Delete Wishlist | deleteWishlist mutation |
| Move to Cart | moveWishlistToCart mutation |
| Delete All Wishlists | deleteAllWishlist mutation |
All Wishlist operations require a customer Bearer token — see Authentication.

