Esempio n. 1
0
 private IVertex FindMetaVertex(IVertex inputVertex, object value)
 {
     if (inputVertex != null)
     {
         // return (inputVertex.Get("*\"" + value.ToString() + "\""));
         return(GraphUtil.DeepFindOneByValue(inputVertex, (string)value));
     }
     else
     {
         return(null);
     }
 }