$ npm install @wix/sdk $ npm install @wix/data $ npm install @wix/sdk $ npm install @wix/stores $ npm install @wix/sdk $ npm install @wix/stores $ npm install @wix/data import { items } from '@wix/data'; import { createClient, OAuthStrategy } from '@wix/sdk'; //To access the Wix APIs, create a client with the createClient() function imported from the @wix/sdk package. const myWixClient = createClient({ modules: { items }, auth: OAuthStrategy({ clientId: '6ddcffb0-9777-412e-a303-1935e55b5c7b' }), }); const dataItemsList = await myWixClient.items.query({ "dataCollectionId": "Forms/subscribers073" }).find(); console.log('My Data Items:'); console.log('Total: ', dataItemsList.items.length); console.log(dataItemsList.items .map((item) => item.data._id) .join('\n') ); import { products } from '@wix/stores'; import { createClient, OAuthStrategy } from '@wix/sdk'; //To access the Wix APIs, create a client with the createClient() function imported from the @wix/sdk package. const myWixClient = createClient({ modules: { products }, auth: OAuthStrategy({ clientId: '6ddcffb0-9777-412e-a303-1935e55b5c7b' }), }); const productList = await myWixClient.products.queryProducts().find(); console.log('My Products:'); console.log('Total: ', productList.items.length); console.log(productList.items .map((item) => item.name) .join('\n') );
top of page

Water Bottle & Sets

Analemma Water Bottle and Water Bottle Sets
Analemma Water Bottle and Water Bottle Sets
0 products

No products here yet...

In the meantime, you can choose a different category to continue shopping.

bottom of page
$ npm install @wix/sdk $ npm install @wix/stores