vertexProperty.iterators().hiddenPropertyIterator().forEachRemaining(h -> {
propsOnProps.add(Graph.Key.hide(h.key()));
propsOnProps.add(h.value());
});
vertexProperty.iterators().propertyIterator().forEachRemaining(h -> {
propsOnProps.add(h.key());
propsOnProps.add(h.value());
});
propsOnProps.add(T.id);