final BatchGraph graph = BatchGraph.build(g)
.incrementalLoading(true, Exists.IGNORE, Exists.THROW)
.vertexIdKey("name")
.bufferSize(1).create();
final Vertex v2 = graph.addVertex(T.id, "marko", "age", 29);
final Vertex v1 = graph.addVertex(T.id, "stephen", "age", 37);
final Object id1 = GraphManager.get().convertId("1");
v1.addEdge("knows", v2, "weight", 1.0d, T.id, id1);
try {
v1.addEdge("knows", v2, "weight", 0.5d, T.id, id1); // second edge is overwrites properties of the first
fail("Should have thrown an error because the vertex already exists");