• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/webform/internals/resultentity.php
  • Класс: Bitrix\Crm\WebForm\Internals\ResultEntityTable
  • Вызов: ResultEntityTable::getCountOfUniqueResultIds
static function getCountOfUniqueResultIds(): int
{
	return (int)static::query()
		->addSelect(
			Query::expr()->countDistinct('RESULT_ID'),
			'CNT'
		)
		->exec()
		->fetch()['CNT'];
}