Hi @eljuderino
Since your data’s in Prisma, you’ll need to fetch it via your app’s backend. Create an API endpoint (like /api/wishlist) in your theme extension app to query Prisma for the logged-in customer’s wishlist items, returning product IDs.
Then, in your Shopify theme, add a new page or section (e.g., “My Wishlist”) and use Liquid to call that endpoint with a fetch request via JavaScript. Something like fetch(‘/apps/your-app/api/wishlist’).then(res => res.json()) to grab the data. Map those product IDs to Shopify’s storefront API or Liquid {% product %} tags to render the items with titles, images, and prices. Ensure your app authenticates the customer (via Shopify’s session) so only their wishlist shows up.
Hope this helps ![]()