/** * Filter the query by a related Right object * * @param Right|PropelObjectCollection $right the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return UserQuery The current query, for fluid interface * @throws PropelException - if the provided filter is invalid. */ public function filterByRightRelatedByUpdatedBy($right, $comparison = null) { if ($right instanceof Right) { return $this->addUsingAlias(UserPeer::ID, $right->getUpdatedBy(), $comparison); } elseif ($right instanceof PropelObjectCollection) { return $this->useRightRelatedByUpdatedByQuery()->filterByPrimaryKeys($right->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByRightRelatedByUpdatedBy() only accepts arguments of type Right or PropelCollection'); } }