• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Relation/RelationManager.php
  • Класс: Bitrix\Crm\Relation\RelationManager
  • Вызов: RelationManager::getRelation
public function getRelation(RelationIdentifier $identifier): ?Relation
{
	$relations =
		$this->getRelations($identifier->getParentEntityTypeId())
			->merge(
				$this->getRelations($identifier->getChildEntityTypeId())
			)
	;

	return $relations->get($identifier);
}