final Vertex v = g.addVertex(T.id, "test", "something", "else");
final Edge e = v.addEdge("self", v, T.id, "edge-id", "try", "this", strategy.getIdKey(), "should be ok to set this as supportsEdgeId=false");
tryCommit(g, c -> {
assertNotNull(e);
assertEquals("edge-id", e.id());
assertEquals("this", e.property("try").value());
assertEquals("should be ok to set this as supportsEdgeId=false", e.property(strategy.getIdKey()).value());
final Edge found = g.e("edge-id");
assertEquals("edge-id", found.id());
assertEquals("this", found.property("try").value());