I have a Nodetype
[my:Config] > mix:versionable
- subConfigs (my:SubConfig) multiple
I created a node: /Configuration of type my:Config
and I have added subConfigs to this node,
vms.checkout("/Configuration");
Node config = session.getNode("/Configuration");
config.addNode("subConfigs", "my:SubConfig");
session.save();
vms.checkin("/Configuration");
after doing a lot of aditions I have got to: revision 1.57 of /Configuration
with 10 subConfigs
I do a vms.restore("1.56") and a vms.restore("1.57") and when I list list
subConfigs I have 9 subConfigs.
however when I do a vms.restore("1.1") and a vms.restore("1.57") and when I
list
list subConfigs I haveĀ 10 subConfigs.
can somebody explain to me what is going on ?
thank you
--zoly