- š©š°Denmark ressa Copenhagen
Just leaving a comment for those who don't need to export content, but looking for a way to create nodes and terms, for example for content during development, in which case Drupal core module Migrate offers an alternative solution.
There is a great ressource at https://understanddrupal.com/migrations, and with Migrate module, a custom module with three files is all that is needed to create nodes and terms--not connected in this example, though that is of course possible (code taken from ud_migrations_first and ud_migrations_multivalue_terms):
ud_migrations_first.info.yml
type: module name: UD First Migration description: 'Example of basic Drupal migration.' core_version_requirement: ^8 || ^9 || ^10 dependencies: - drupal:migrate
udm_first.yml
id: udm_first label: 'UD First migration' source: plugin: embedded_data data_rows: - unique_id: 1 creative_title: 'The versatility of Drupal fields' engaging_content: 'Fields are Drupal''s atomic data storage mechanism...' - unique_id: 2 creative_title: 'What is a view in Drupal? How do they work?' engaging_content: 'In Drupal, a view is a listing of information. It can a list of nodes, users, comments, taxonomy terms, files, etc...' ids: unique_id: type: integer process: title: creative_title body: engaging_content destination: plugin: 'entity:node' default_bundle: page
udm_first_terms.yml
id: udm_first_terms label: 'UD taxonomy term migration' source: plugin: embedded_data data_rows: - fruit_name: 'Grape' fruit_description: 'Eat fresh or prepare some jelly.' - fruit_name: 'Red grape' fruit_description: 'Sweet grape' fruit_parent: 'Grape' - fruit_name: 'White grape' fruit_description: 'Sour grape' fruit_parent: 'Grape' - fruit_name: 'Apple' fruit_description: 'Eat fresh or prepare some juice.' - fruit_name: 'Red apple' fruit_description: 'Sweet apple' fruit_parent: 'Apple' - fruit_name: 'Green apple' fruit_description: 'Sour apple' fruit_parent: 'Apple' ids: fruit_name: type: string process: name: fruit_name description: fruit_description parent: plugin: migration_lookup migration: udm_first_terms source: fruit_parent destination: plugin: 'entity:taxonomy_term' default_bundle: tags
File structure:
ud_migrations_first/ āāā migrations ā āāā udm_first_terms.yml ā āāā udm_first.yml āāā ud_migrations_first.info.yml