public async Task <IActionResult> GetObjectComments()
        {
            var result = await _commentAggregator.GetAndAggregateComments();

            return(StatusCode(result));
        }