• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/service/groupqueueservice.php
  • Класс: Bitrix\Sender\Service\GroupQueueService
  • Вызов: GroupQueueService::getCurrentRow
private function getCurrentRow(int $type, int $entityId, int $groupId): array
{
	return GroupQueueTable::query()
		->setSelect(['ID'])
		->where('TYPE', $type)
		->where('ENTITY_ID', $entityId)
		->where('GROUP_ID', $groupId)
		->exec()
		->fetchAll();
}