New endpoints to auto populate edge properties.
[aai/gizmo.git] / src / main / java / org / openecomp / crud / service / CrudGraphDataService.java
index e6d6748..a8c0248 100644 (file)
@@ -159,6 +159,10 @@ public class CrudGraphDataService {
 
   }
 
+  public Vertex getVertex(String id) throws CrudException {
+    return dao.getVertex(id);
+  }
+  
   public String getVertex(String version, String id, String type) throws CrudException {
     type = OxmModelValidator.resolveCollectionType(version, type);
     Vertex vertex = dao.getVertex(id, type);