I am a bit confused about the how to delete hibernate entity using HQL. I have entity Entity
and this entity has multiple many-to-many/one-to-many mappings. If I delete Entity
using the HQL query
Delete from Entity x where x.id = :id
will hibernate take care of deleting child objects and relationships specified in the entity's configuration file?