Skip to main content
Skip to main content

retrieveTag - Product Module Reference

Beta

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

This method is used to retrieve a tag by its ID.

Example

A simple example that retrieves a product tag by its ID:

import {
initialize as initializeProductModule,
} from "@medusajs/product"

async function retrieveProductTag (tagId: string) {
const productModule = await initializeProductModule()

const productTag = await productModule.retrieveTag(tagId)

// do something with the product tag or return it
}

To specify relations that should be retrieved:

import {
initialize as initializeProductModule,
} from "@medusajs/product"

async function retrieveProductTag (tagId: string) {
const productModule = await initializeProductModule()

const productTag = await productModule.retrieveTag(tagId, {
relations: ["products"]
})

// do something with the product tag or return it
}

Parameters

tagIdstringRequired
The ID of the tag to retrieve.
The configurations determining how the product tag is retrieved. Its properties, such as select or relations, accept the attributes or relations associated with a product tag.
sharedContextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<ProductTagDTO>Required
The retrieved product tag.
Was this section helpful?