jhedstrom / DrupalDriver

A collection of drivers for controlling Drupal.
GNU General Public License v2.0
64 stars 95 forks source link

Fix taxonomy term creation #260

Closed Kingdutch closed 1 year ago

Kingdutch commented 1 year ago

parent may be empty if multiple taxonomies are created in a single Given block.

Additionally id is not the right base field for the query but it should be name.

Finally the entityQuery does not return loaded entities but returns IDs so calling ->id() on it will break as well.

Fixes #259

aaron-capellic commented 1 year ago

Thank you, this is working for me.

jhedstrom commented 1 year ago

Thank you!