Module: NotionRubyMapping::EqualsDoesNotEqual
- Included in:
- CheckboxProperty, NumberProperty, SelectProperty, TextProperty
- Defined in:
- lib/notion_ruby_mapping/property.rb
Overview
module for make query of equals and does_not_equal
Instance Method Summary collapse
-
#filter_does_not_equal(value) ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_equals(value) ⇒ NotionRubyMapping::Query
Generated Query object.
Instance Method Details
#filter_does_not_equal(value) ⇒ NotionRubyMapping::Query
Returns generated Query object.
58 59 60 |
# File 'lib/notion_ruby_mapping/property.rb', line 58 def filter_does_not_equal(value) make_filter_query "does_not_equal", value end |
#filter_equals(value) ⇒ NotionRubyMapping::Query
Returns generated Query object.
52 53 54 |
# File 'lib/notion_ruby_mapping/property.rb', line 52 def filter_equals(value) make_filter_query "equals", value end |