I am trying to Query all paragraphs of a certain type but I am not getting any output. Is my query right? Currently being returned an empty array.
$query = $this->node->getQuery()
->condition('type', 'my_paragraph_type')
->execute();
$this->logger->info('query: ' . json_encode($query));