I'd like to persist a bare Map to vertex properties. The motivation is that I don't know in advance which properties the map will contain. And storing one vertex per property doesn't seem effective. How would I do that?
interface Foo {
@Properties...?
Map<String,String> getProperties();
@Properties
Map<String,String> addProperty();
}
Perhaps through method handlers. How? And is there any native support?
I've added support for it using the handlers. See the Windup project. https://github.com/windup/windup/pull/157
This is how it looks in models.
This one stores the map in the props of given frame's vertex, using a prefix
map:
And this one stores the map in an adjacent vertex, hence can store multiple maps: