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
product paging: implement your own "load more" button logic
letmy_product_catalog=[]letthere_are_more_pages=trueconstproducts=shopify.products()asyncfunctionmy_load_more_button(){if(there_are_more_pages){const{value}=awaitproducts.next()const[new_products,more]=value!my_product_catalog=[...my_product_catalog, ...new_products]there_are_more_pages=more}}awaitmy_load_more_button()// initially load the first pageawaitmy_load_more_button()// call it when the user presses the button