Beispiel #1
0
        public IRepeater repeat(IArgumentResult parameter)
        {
            this.query += $".repeat({parameter})";

            return(this);
        }
Beispiel #2
0
        public IEdgeResult where (IArgumentResult condition)
        {
            this.query += $".where({condition})";

            return(this);
        }
Beispiel #3
0
 public IVertexResult until(IArgumentResult condition)
 {
     this.query += $".until({condition})";
     return(this);
 }