• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/internals/task/checklist.php
  • Класс: BitrixTasksInternalsTaskCheckListTable
  • Вызов: CheckListTable::getByTaskId
static function getByTaskId(int $taskId): ?EO_CheckList
{
	return self::getList([
		'select' => [
			'ID',
		],
		'filter' => [
			'=TASK_ID' => $taskId
		]
	])->fetchObject();
}