Skip to content

Instantly share code, notes, and snippets.

@batigolix
batigolix / update-term.php
Created June 27, 2018 07:38
Update query for Drupal 8
/**
* Update taxonomy term.
*/
function _zk_general_test() {
$query = \Drupal::database()->update('taxonomy_term_field_data');
$query->fields([
'description__format' => 'plain_text',
]);
$query->condition('vid', 'sectors');
$query->execute();