Doctrine\OrientDB\Query\Command\Select::resetWhere PHP Method

resetWhere() public method

Deletes all the WHERE and BETWEEN conditions in the current SELECT.
public resetWhere ( ) : true
return true
    public function resetWhere()
    {
        parent::resetWhere();
        $this->clearToken('Between');
        return true;
    }