I am using sql repository to save node data. I have associated a property "message" to world node, but it is not visible.
Sample Code :
Node hello = root.addNode("hello");
Node world = hello.addNode("world");
world.setProperty("message", "Hello, World!");
I am not able to see this "message" property in modeshape-explorer on "world" node.
I want to view/edit node property from GUI application. Any suggestions ?