mongodb/mongoid · error · Mongoid::Errors::InvalidQuery
$lt argument cannot be a Range: #{Errors::InvalidQuery.trunc
Error message
$lt argument cannot be a Range: #{Errors::InvalidQuery.truncate_expr(condition)} What it means
Error "$lt argument cannot be a Range: #{Errors::InvalidQuery.truncate_expr(condition)}" thrown in mongodb/mongoid.
Source
Thrown at lib/mongoid/matcher/lt.rb:21
# In-memory matcher for $lt expression.
#
# @see https://www.mongodb.com/docs/manual/reference/operator/query/lt/
#
# @api private
module Lt
# Returns whether a value satisfies a $lt expression.
#
# @param [ true | false ] exists Whether the value exists.
# @param [ Object ] value The value to check.
# @param [ Object ] condition The $lt condition predicate.
#
# @return [ true | false ] Whether the value matches.
#
# @api private
module_function def matches?(exists, value, condition)
case condition
when Range
raise Errors::InvalidQuery, "$lt argument cannot be a Range: #{Errors::InvalidQuery.truncate_expr(condition)}"
end
FieldOperator.apply_array_field_operator(exists, value, condition) do |v|
FieldOperator.apply_comparison_operator(:<, v, condition)
end
end
end
end
end
View on GitHub (pinned to 0da0e23d71)
When it happens
Trigger: Thrown at lib/mongoid/matcher/lt.rb:21 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of mongodb/mongoid@0da0e23d71 (2026-08-23).
Data as JSON: /api/errors/4d03172727f5838a.
Report an issue: GitHub.