If one has a graph of objects, all of which derive from QtObject, some of which make use of Qt properties, is there a built in approach or advisable approach to serializing them? I'd prefer not to use a database backed ORM, and don't need advanced means of hydrating the objects at runtime.
In other words if I serialized n objects, each of which were the root of their own graph, it would be fine by me to be able to simply read them back at runtime, and build a map of their "names" to pointers. I have need for advanced queries.