// do migration of our own ID properties (and only our own!)
if (node.hasProperty("uuid") && node.getProperty("uuid") instanceof String && !node.hasProperty("id")) {
try {
final NodeInterface nodeInterface = nodeFactory.instantiate(node);
final String uuid = nodeInterface.getProperty(uuidProperty);
if (uuid != null) {
nodeInterface.setProperty(GraphObject.id, uuid);