You are here

public function ParagraphsType::query in Paragraphs 8

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

src/Plugin/migrate/source/d7/ParagraphsType.php, line 34

Class

ParagraphsType
Paragraphs Type source plugin.

Namespace

Drupal\paragraphs\Plugin\migrate\source\d7

Code

public function query() {
  $query = $this
    ->select('paragraphs_bundle', 'pb')
    ->fields('pb');
  return $query;
}