class TaxRuleQuery extends ModelCriteria

Base class that represents a query for the 'tax_rule' table.

Methods

__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\TaxRule', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\TaxRuleQuery object.

static  TaxRuleQuery
create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildTaxRuleQuery object.

TaxRule|array|mixed
findPk( mixed $key, ConnectionInterface $con = null)

Find object by primary key.

ObjectCollection|array|mixed
findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

filterByIsDefault( boolean|string $isDefault = null, string $comparison = null)

Filter the query on the is_default column

filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

filterByProduct( Product|ObjectCollection $product, string $comparison = null)

Filter the query by a related \Thelia\Model\Product object

joinProduct( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the Product relation

useProductQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the Product relation Product object

filterByTaxRuleCountry( TaxRuleCountry|ObjectCollection $taxRuleCountry, string $comparison = null)

Filter the query by a related \Thelia\Model\TaxRuleCountry object

joinTaxRuleCountry( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the TaxRuleCountry relation

useTaxRuleCountryQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the TaxRuleCountry relation TaxRuleCountry object

filterByTaxRuleI18n( TaxRuleI18n|ObjectCollection $taxRuleI18n, string $comparison = null)

Filter the query by a related \Thelia\Model\TaxRuleI18n object

joinTaxRuleI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the TaxRuleI18n relation

useTaxRuleI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the TaxRuleI18n relation TaxRuleI18n object

prune( TaxRule $taxRule = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the tax_rule table.

int
delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildTaxRule or Criteria object OR a primary key value.

recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

recentlyCreated( int $nbDays = 7)

Filter by the latest created

lastUpdatedFirst()

Order by update date desc

firstUpdatedFirst()

Order by update date asc

lastCreatedFirst()

Order by create date desc

firstCreatedFirst()

Order by create date asc

joinI18n( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the i18n relation

joinWithI18n( string $locale = 'en_US', string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query and hydrates the related I18n object.

useI18nQuery( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the I18n relation query object

ChildTaxRuleQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildTaxRuleQuery
orderByIsDefault($order = Criteria::ASC)

Order by the is_default column

ChildTaxRuleQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildTaxRuleQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildTaxRuleQuery
groupById()

Group by the id column

ChildTaxRuleQuery
groupByIsDefault()

Group by the is_default column

ChildTaxRuleQuery
groupByCreatedAt()

Group by the created_at column

ChildTaxRuleQuery
groupByUpdatedAt()

Group by the updated_at column

ChildTaxRuleQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildTaxRuleQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildTaxRuleQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildTaxRuleQuery
leftJoinProduct($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Product relation

ChildTaxRuleQuery
rightJoinProduct($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Product relation

ChildTaxRuleQuery
innerJoinProduct($relationAlias = null)

Adds a INNER JOIN clause to the query using the Product relation

ChildTaxRuleQuery
leftJoinTaxRuleCountry($relationAlias = null)

Adds a LEFT JOIN clause to the query using the TaxRuleCountry relation

ChildTaxRuleQuery
rightJoinTaxRuleCountry($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the TaxRuleCountry relation

ChildTaxRuleQuery
innerJoinTaxRuleCountry($relationAlias = null)

Adds a INNER JOIN clause to the query using the TaxRuleCountry relation

ChildTaxRuleQuery
leftJoinTaxRuleI18n($relationAlias = null)

Adds a LEFT JOIN clause to the query using the TaxRuleI18n relation

ChildTaxRuleQuery
rightJoinTaxRuleI18n($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the TaxRuleI18n relation

ChildTaxRuleQuery
innerJoinTaxRuleI18n($relationAlias = null)

Adds a INNER JOIN clause to the query using the TaxRuleI18n relation

ChildTaxRule
findOne( ConnectionInterface $con = null)

Return the first ChildTaxRule matching the query

ChildTaxRule
findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildTaxRule matching the query, or a new ChildTaxRule object populated from the query conditions when no match is found

ChildTaxRule
findOneById( int $id)

Return the first ChildTaxRule filtered by the id column

ChildTaxRule
findOneByIsDefault( boolean $is_default)

Return the first ChildTaxRule filtered by the is_default column

ChildTaxRule
findOneByCreatedAt( string $created_at)

Return the first ChildTaxRule filtered by the created_at column

ChildTaxRule
findOneByUpdatedAt( string $updated_at)

Return the first ChildTaxRule filtered by the updated_at column

array
findById( int $id)

Return ChildTaxRule objects filtered by the id column

array
findByIsDefault( boolean $is_default)

Return ChildTaxRule objects filtered by the is_default column

array
findByCreatedAt( string $created_at)

Return ChildTaxRule objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildTaxRule objects filtered by the updated_at column

Details

at line 75
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\TaxRule', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\TaxRuleQuery object.

Parameters

string $dbName The database name
string $modelName The phpName of a model, e.g. 'Book'
string $modelAlias The alias for the model in this query, e.g. 'b'

at line 88
static TaxRuleQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildTaxRuleQuery object.

Parameters

string $modelAlias The alias of a model in the query
Criteria $criteria Optional Criteria to build the query from

Return Value

TaxRuleQuery

at line 118
TaxRule|array|mixed findPk( mixed $key, ConnectionInterface $con = null)

Find object by primary key.

Propel uses the instance pool to skip the database if the object exists. Go fast if the query is untouched.

$obj = $c->findPk(12, $con);

Parameters

mixed $key Primary key to use for the query
ConnectionInterface $con an optional connection object

Return Value

TaxRule|array|mixed the result, formatted by the current formatter

at line 200
ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

Parameters

array $keys Primary keys to use for the query
ConnectionInterface $con an optional connection object

Return Value

ObjectCollection|array|mixed the list of results, formatted by the current formatter

at line 221
TaxRuleQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

TaxRuleQuery The current query, for fluid interface

at line 234
TaxRuleQuery filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

Parameters

array $keys The list of primary key to use for the query

Return Value

TaxRuleQuery The current query, for fluid interface

at line 258
TaxRuleQuery filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

Example usage: $query->filterById(1234); // WHERE id = 1234 $query->filterById(array(12, 34)); // WHERE id IN (12, 34) $query->filterById(array('min' => 12)); // WHERE id > 12

Parameters

mixed $id The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

TaxRuleQuery The current query, for fluid interface

at line 299
TaxRuleQuery filterByIsDefault( boolean|string $isDefault = null, string $comparison = null)

Filter the query on the is_default column

Example usage: $query->filterByIsDefault(true); // WHERE isdefault = true $query->filterByIsDefault('yes'); // WHERE isdefault = true

Parameters

boolean|string $isDefault The value to use as filter. Non-boolean arguments are converted using the following rules: * 1, '1', 'true', 'on', and 'yes' are converted to boolean true * 0, '0', 'false', 'off', and 'no' are converted to boolean false Check on string values is case insensitive (so 'FaLsE' is seen as 'false').
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

TaxRuleQuery The current query, for fluid interface

at line 328
TaxRuleQuery filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

Example usage: $query->filterByCreatedAt('2011-03-14'); // WHERE createdat = '2011-03-14' $query->filterByCreatedAt('now'); // WHERE createdat = '2011-03-14' $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'

Parameters

mixed $createdAt The value to use as filter. Values can be integers (unix timestamps), DateTime objects, or strings. Empty strings are treated as NULL. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

TaxRuleQuery The current query, for fluid interface

at line 371
TaxRuleQuery filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

Example usage: $query->filterByUpdatedAt('2011-03-14'); // WHERE updatedat = '2011-03-14' $query->filterByUpdatedAt('now'); // WHERE updatedat = '2011-03-14' $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'

Parameters

mixed $updatedAt The value to use as filter. Values can be integers (unix timestamps), DateTime objects, or strings. Empty strings are treated as NULL. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

TaxRuleQuery The current query, for fluid interface

at line 402
TaxRuleQuery filterByProduct( Product|ObjectCollection $product, string $comparison = null)

Filter the query by a related \Thelia\Model\Product object

Parameters

Product|ObjectCollection $product the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

TaxRuleQuery The current query, for fluid interface

at line 425
TaxRuleQuery joinProduct( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the Product relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

TaxRuleQuery The current query, for fluid interface

at line 460
ProductQuery useProductQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the Product relation Product object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

ProductQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 475
TaxRuleQuery filterByTaxRuleCountry( TaxRuleCountry|ObjectCollection $taxRuleCountry, string $comparison = null)

Filter the query by a related \Thelia\Model\TaxRuleCountry object

Parameters

TaxRuleCountry|ObjectCollection $taxRuleCountry the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

TaxRuleQuery The current query, for fluid interface

at line 498
TaxRuleQuery joinTaxRuleCountry( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the TaxRuleCountry relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

TaxRuleQuery The current query, for fluid interface

at line 533
TaxRuleCountryQuery useTaxRuleCountryQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the TaxRuleCountry relation TaxRuleCountry object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

TaxRuleCountryQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 548
TaxRuleQuery filterByTaxRuleI18n( TaxRuleI18n|ObjectCollection $taxRuleI18n, string $comparison = null)

Filter the query by a related \Thelia\Model\TaxRuleI18n object

Parameters

TaxRuleI18n|ObjectCollection $taxRuleI18n the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

TaxRuleQuery The current query, for fluid interface

at line 571
TaxRuleQuery joinTaxRuleI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the TaxRuleI18n relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

TaxRuleQuery The current query, for fluid interface

at line 606
TaxRuleI18nQuery useTaxRuleI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the TaxRuleI18n relation TaxRuleI18n object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

TaxRuleI18nQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 620
TaxRuleQuery prune( TaxRule $taxRule = null)

Exclude object from result

Parameters

TaxRule $taxRule Object to remove from the list of results

Return Value

TaxRuleQuery The current query, for fluid interface

at line 635
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the tax_rule table.

Parameters

ConnectionInterface $con the connection to use

Return Value

int The number of affected rows (if supported by underlying database driver).

at line 672
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildTaxRule or Criteria object OR a primary key value.

Parameters

ConnectionInterface $con

Return Value

int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows if supported by native driver or if emulated using Propel.

Exceptions

PropelException Any exceptions caught during processing will be rethrown wrapped into a PropelException.

at line 713
TaxRuleQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

TaxRuleQuery The current query, for fluid interface

at line 725
TaxRuleQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

TaxRuleQuery The current query, for fluid interface

at line 735
TaxRuleQuery lastUpdatedFirst()

Order by update date desc

Return Value

TaxRuleQuery The current query, for fluid interface

at line 745
TaxRuleQuery firstUpdatedFirst()

Order by update date asc

Return Value

TaxRuleQuery The current query, for fluid interface

at line 755
TaxRuleQuery lastCreatedFirst()

Order by create date desc

Return Value

TaxRuleQuery The current query, for fluid interface

at line 765
TaxRuleQuery firstCreatedFirst()

Order by create date asc

Return Value

TaxRuleQuery The current query, for fluid interface

at line 781
TaxRuleQuery joinI18n( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the i18n relation

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

TaxRuleQuery The current query, for fluid interface

at line 799
TaxRuleQuery joinWithI18n( string $locale = 'en_US', string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query and hydrates the related I18n object.

Shortcut for $c->joinI18n($locale)->with()

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

TaxRuleQuery The current query, for fluid interface

at line 820
TaxRuleI18nQuery useI18nQuery( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the I18n relation query object

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

TaxRuleI18nQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 65
ChildTaxRuleQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery orderByIsDefault($order = Criteria::ASC)

Order by the is_default column

Parameters

$order

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery groupById()

Group by the id column

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery groupByIsDefault()

Group by the is_default column

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery leftJoinProduct($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Product relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery rightJoinProduct($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Product relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery innerJoinProduct($relationAlias = null)

Adds a INNER JOIN clause to the query using the Product relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery leftJoinTaxRuleCountry($relationAlias = null)

Adds a LEFT JOIN clause to the query using the TaxRuleCountry relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery rightJoinTaxRuleCountry($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the TaxRuleCountry relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery innerJoinTaxRuleCountry($relationAlias = null)

Adds a INNER JOIN clause to the query using the TaxRuleCountry relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery leftJoinTaxRuleI18n($relationAlias = null)

Adds a LEFT JOIN clause to the query using the TaxRuleI18n relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery rightJoinTaxRuleI18n($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the TaxRuleI18n relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRuleQuery innerJoinTaxRuleI18n($relationAlias = null)

Adds a INNER JOIN clause to the query using the TaxRuleI18n relation

Parameters

$relationAlias

Return Value

ChildTaxRuleQuery

at line 65
ChildTaxRule findOne( ConnectionInterface $con = null)

Return the first ChildTaxRule matching the query

Parameters

ConnectionInterface $con

Return Value

ChildTaxRule

at line 65
ChildTaxRule findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildTaxRule matching the query, or a new ChildTaxRule object populated from the query conditions when no match is found

Parameters

ConnectionInterface $con

Return Value

ChildTaxRule

at line 65
ChildTaxRule findOneById( int $id)

Return the first ChildTaxRule filtered by the id column

Parameters

int $id

Return Value

ChildTaxRule

at line 65
ChildTaxRule findOneByIsDefault( boolean $is_default)

Return the first ChildTaxRule filtered by the is_default column

Parameters

boolean $is_default

Return Value

ChildTaxRule

at line 65
ChildTaxRule findOneByCreatedAt( string $created_at)

Return the first ChildTaxRule filtered by the created_at column

Parameters

string $created_at

Return Value

ChildTaxRule

at line 65
ChildTaxRule findOneByUpdatedAt( string $updated_at)

Return the first ChildTaxRule filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildTaxRule

at line 65
array findById( int $id)

Return ChildTaxRule objects filtered by the id column

Parameters

int $id

Return Value

array

at line 65
array findByIsDefault( boolean $is_default)

Return ChildTaxRule objects filtered by the is_default column

Parameters

boolean $is_default

Return Value

array

at line 65
array findByCreatedAt( string $created_at)

Return ChildTaxRule objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 65
array findByUpdatedAt( string $updated_at)

Return ChildTaxRule objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array