- /** @var \Magento\Catalog\Model\ResourceModel\Category\Collection $categories */
- $categories = $this->_categoryCollectionFactory->create();
- return $categories->setStore(
- $this->_storeManager->getStore()
- )->addAttributeToSelect(
- 'name'
- )->addAttributeToSelect(
- 'url_key'
- )->addFieldToFilter(
- 'entity_id',
- ['in' => $pathIds]
- )->addFieldToFilter(
- 'is_active',
- 1
- )->load()->getItems();