If they use the snapshot branch then simply adding
`importer.setVertexFactory(id->id);`
in the importer will give them this functionality.
Only in case the user supplies such as factory, it is called with the vertex identifier from the file. The method given the vertex identifier from the
file should return an actual graph vertex. The user returned vertex is added directly into the graph without using the vertex supplier.
If no such factory is provided, the default behavior is to acquire a new vertex from the graph vertex supplier and associate the original identifier
from the file as an attribute of the new vertex.
-- Dimitrios