Module: NotionRubyMapping::EqualsDoesNotEqual
- Included in:
- CheckboxProperty, EmailProperty, NumberProperty, PhoneNumberProperty, SelectProperty, TextProperty, UrlProperty
- 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, rollup = nil, rollup_type = nil) ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_equals(value, rollup = nil, rollup_type = nil) ⇒ NotionRubyMapping::Query
Generated Query object.
Instance Method Details
#filter_does_not_equal(value, rollup = nil, rollup_type = nil) ⇒ NotionRubyMapping::Query
177 178 179 |
# File 'lib/notion_ruby_mapping/property.rb', line 177 def filter_does_not_equal(value, rollup = nil, rollup_type = nil) make_filter_query "does_not_equal", value, rollup, rollup_type end |
#filter_equals(value, rollup = nil, rollup_type = nil) ⇒ NotionRubyMapping::Query
171 172 173 |
# File 'lib/notion_ruby_mapping/property.rb', line 171 def filter_equals(value, rollup = nil, rollup_type = nil) make_filter_query "equals", value, rollup, rollup_type end |