Class: Parse::Constraint::GreaterThanConstraint
- Inherits:
-
Constraint
- Object
- Constraint
- Parse::Constraint::GreaterThanConstraint
- Defined in:
- lib/parse/query/constraints.rb
Overview
Equivalent to the $gt Parse query operation. The alias after is provided for readability.
q.where :field.gt => value
q.where :field.after => date
q.where :created_at.after => DateTime.now
Instance Method Summary collapse
-
#after ⇒ GreaterThanConstraint
Alias for #gt that provides better readability when constraining dates.
-
#greater_than ⇒ GreaterThanConstraint
Alias for #gt.
-
#gt ⇒ GreaterThanConstraint
A registered method on a symbol to create the constraint.
Instance Method Details
#after ⇒ GreaterThanConstraint
Alias for #gt that provides better readability when constraining dates.
227 |
# File 'lib/parse/query/constraints.rb', line 227 constraint_keyword :$gt |
#greater_than ⇒ GreaterThanConstraint
Alias for #gt.
|
|
# File 'lib/parse/query/constraints.rb', line 220
|
#gt ⇒ GreaterThanConstraint
A registered method on a symbol to create the constraint. Maps to Parse operator "$gt".
|
|
# File 'lib/parse/query/constraints.rb', line 214
|