Module: NotionRubyMapping::GreaterThanLessThan
- Included in:
- FormulaProperty, NumberProperty
- Defined in:
- lib/notion_ruby_mapping/property.rb
Overview
module for make query of starts_with and ends_with
Instance Method Summary collapse
-
#filter_greater_than(value) ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_greater_than_or_equal_to(value) ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_less_than(value) ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_less_than_or_equal_to(value) ⇒ NotionRubyMapping::Query
Generated Query object.
Instance Method Details
#filter_greater_than(value) ⇒ NotionRubyMapping::Query
110 111 112 |
# File 'lib/notion_ruby_mapping/property.rb', line 110 def filter_greater_than(value) make_filter_query "greater_than", value end |
#filter_greater_than_or_equal_to(value) ⇒ NotionRubyMapping::Query
122 123 124 |
# File 'lib/notion_ruby_mapping/property.rb', line 122 def filter_greater_than_or_equal_to(value) make_filter_query "greater_than_or_equal_to", value end |
#filter_less_than(value) ⇒ NotionRubyMapping::Query
116 117 118 |
# File 'lib/notion_ruby_mapping/property.rb', line 116 def filter_less_than(value) make_filter_query "less_than", value end |
#filter_less_than_or_equal_to(value) ⇒ NotionRubyMapping::Query
128 129 130 |
# File 'lib/notion_ruby_mapping/property.rb', line 128 def filter_less_than_or_equal_to(value) make_filter_query "less_than_or_equal_to", value end |