How to load comment ids using the comment type in Drupal 8 & 9
Example How to load comment ids using the comment type in Drupal 8 & 9.
$entity_manager = \Drupal::entityTypeManager();
$cids = $entity_manager
    ->getStorage('comment')
    ->getQuery('AND')
    ->condition('entity_id', '25364')
    ->condition('entity_type', 'node')
    ->condition('comment_type' 'post_trp_comments')
    ->execute();