Products for a specific category
category_products(category_id, recursive = TRUE, ...)
category_id | A category ID. |
---|---|
recursive | Should all sub-categories be included? |
... | Arguments passed through to |
Details of all products for a specific category as a data.frame
.
# Get products for a specific category. if (FALSE) { category_id = categories() %>% filter(category_label == "red wine") %>% pull(category_id) category_products(category_id) }