IEdgeResult IEdgeResult.from(IVertexResult source)
 {
     if (source == null)
     {
         throw new ArgumentNullException(nameof(source));
     }
     queryBuilder.Append($".from({source})");
     return(this);
 }
        IEdgeResult IEdgeResult.to(IVertexResult goal)
        {
            if (goal == null)
            {
                throw new ArgumentNullException(nameof(goal));
            }

            queryBuilder.Append($".to({goal})");
            return(this);
        }
Ejemplo n.º 3
0
 public IEdgeResult from(IVertexResult source)
 {
     this.query += $".from({source.ToString()})";
     return(this);
 }
Ejemplo n.º 4
0
 public IEdgeResult to(IVertexResult goal)
 {
     this.query += $".to({goal.ToString()})";
     return(this);
 }