Class: Parse::Constraint::GreaterThanOrEqualConstraint

Inherits:
Constraint
  • Object
show all
Defined in:
lib/parse/query/constraints.rb

Overview

Equivalent to the $gte Parse query operation. The alias on_or_after is provided for readability. q.where :field.gte => value q.where :field.on_or_after => date

q.where :created_at.on_or_after => DateTime.now

Instance Method Summary collapse

Instance Method Details

#greater_than_or_equalGreaterThanOrEqualConstraint

Alias for #gte.



# File 'lib/parse/query/constraints.rb', line 246

#gteGreaterThanOrEqualConstraint

A registered method on a symbol to create the constraint. Maps to Parse operator "$gte".

Examples:

q.where :field.gte => value

Returns:



# File 'lib/parse/query/constraints.rb', line 240

#on_or_afterGreaterThanOrEqualConstraint

Alias for #gte that provides better readability when constraining dates.



253
# File 'lib/parse/query/constraints.rb', line 253

constraint_keyword :$gte