Hi @samikshaa223429 , Setting the property to null will remove that property. You can do as belownode.setProperty(propertyName,null); or use remove methodnode.getProperty(propertyName).remove(); But dont forget to save it session.save(); And I think you are missing session.save(); in your code. Hope...