Module: NotionRubyMapping::GreaterThanLessThan
- Included in:
- FormulaProperty, NumberProperty, RollupProperty
- Defined in:
- lib/notion_ruby_mapping/properties/property.rb
Overview
module for make query of starts_with and ends_with
Instance Method Summary collapse
-
#filter_greater_than(value, condition: nil, another_type: nil) ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_greater_than_or_equal_to(value, condition: nil, another_type: nil) ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_less_than(value, condition: nil, another_type: nil) ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_less_than_or_equal_to(value, condition: nil, another_type: nil) ⇒ NotionRubyMapping::Query
Generated Query object.
Instance Method Details
#filter_greater_than(value, condition: nil, another_type: nil) ⇒ NotionRubyMapping::Query
328 329 330 |
# File 'lib/notion_ruby_mapping/properties/property.rb', line 328 def filter_greater_than(value, condition: nil, another_type: nil) make_filter_query "greater_than", value, condition: condition, another_type: another_type end |
#filter_greater_than_or_equal_to(value, condition: nil, another_type: nil) ⇒ NotionRubyMapping::Query
344 345 346 |
# File 'lib/notion_ruby_mapping/properties/property.rb', line 344 def filter_greater_than_or_equal_to(value, condition: nil, another_type: nil) make_filter_query "greater_than_or_equal_to", value, condition: condition, another_type: another_type end |
#filter_less_than(value, condition: nil, another_type: nil) ⇒ NotionRubyMapping::Query
336 337 338 |
# File 'lib/notion_ruby_mapping/properties/property.rb', line 336 def filter_less_than(value, condition: nil, another_type: nil) make_filter_query "less_than", value, condition: condition, another_type: another_type end |
#filter_less_than_or_equal_to(value, condition: nil, another_type: nil) ⇒ NotionRubyMapping::Query
352 353 354 |
# File 'lib/notion_ruby_mapping/properties/property.rb', line 352 def filter_less_than_or_equal_to(value, condition: nil, another_type: nil) make_filter_query "less_than_or_equal_to", value, condition: condition, another_type: another_type end |