8 lines
297 B
Plaintext
8 lines
297 B
Plaintext
import Medusa from "@medusajs/medusa-js"
|
|
const medusa = new Medusa({ baseUrl: MEDUSA_BACKEND_URL, maxRetries: 3 })
|
|
// must be previously logged in or use api token
|
|
medusa.admin.customerGroups.list()
|
|
.then(({ customer_groups, limit, offset, count }) => {
|
|
console.log(customer_groups.length);
|
|
});
|