public IRepeater repeat(IArgumentResult parameter) { this.query += $".repeat({parameter})"; return(this); }
public IEdgeResult where (IArgumentResult condition) { this.query += $".where({condition})"; return(this); }
public IVertexResult until(IArgumentResult condition) { this.query += $".until({condition})"; return(this); }