Skip to main content
Skip to main content

createTags - Product Module Reference

This documentation provides a reference to the createTags method. This belongs to the Product Module.

This method is used to create product tags.

Example

const tags = await productModuleService.createTags([
{
value: "Clothes",
},
{
value: "Accessories",
},
])

Parameters

dataCreateProductTagDTO[]Required
The product tags to create.
sharedContextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<ProductTagDTO[]>Required
The list of product tags.
Was this section helpful?