int i = 0;
intoCache[i++] = newNode;
List<Property> noProperties = Collections.emptyList();
PathFactory pathFactory = context.getValueFactories().getPathFactory();
for (Segment child : mergedNode.getChildren()) {
newNode = new BasicCreateNodeCommand(pathFactory.create(path, child), noProperties, conflictBehavior);
// newNode.setProperty(new BasicSingleValueProperty(this.uuidPropertyName, mergedNode.getUuid()));
intoCache[i++] = newNode;
}
cacheConnection.execute(context, intoCache);
}