You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bookmark management module for the Unchained Engine. Allows users to bookmark products for later reference.
Installation
npm install @unchainedshop/core-bookmarks
Usage
import{configureBookmarksModule}from'@unchainedshop/core-bookmarks';constbookmarksModule=awaitconfigureBookmarksModule({ db });// Create a bookmarkconstbookmarkId=awaitbookmarksModule.create({userId: 'user-123',productId: 'product-456',});// Find bookmarks by userconstbookmarks=awaitbookmarksModule.findBookmarksByUserId('user-123');