retrieveCollection - Product Module Reference
BetaThis documentation provides a reference to the retrieveCollection method. This belongs to the Product Module.
This method is used to retrieve a product collection by its ID.
Example
A simple example that retrieves a product collection by its ID:
To specify relations that should be retrieved:
import {
initialize as initializeProductModule,
} from "@medusajs/product"
async function retrieveCollection (id: string) {
const productModule = await initializeProductModule()
const collection = await productModule.retrieveCollection(id, {
relations: ["products"]
})
// do something with the product collection or return it
}
Parameters
productCollectionId
stringRequiredThe ID of the product collection to retrieve.
config
FindConfig<ProductCollectionDTO>The configurations determining how the product collection is retrieved. Its properties, such as select
or relations
, accept the
attributes or relations associated with a product collection.
config
FindConfig<ProductCollectionDTO>select
or relations
, accept the
attributes or relations associated with a product collection.sharedContext
ContextA context used to share resources, such as transaction manager, between the application and the module.
sharedContext
ContextReturns
The retrieved product collection.
Was this section helpful?