Module: NotionRubyMapping::IsEmptyIsNotEmpty
- Included in:
- DateBaseProperty, FilesProperty, MultiProperty, NumberProperty, SelectProperty, TextProperty
- Defined in:
- lib/notion_ruby_mapping/property.rb
Overview
module for make query of is_empty and is_not_empty
Instance Method Summary collapse
-
#filter_is_empty ⇒ NotionRubyMapping::Query
Generated Query object.
-
#filter_is_not_empty ⇒ NotionRubyMapping::Query
Generated Query object.
Instance Method Details
#filter_is_empty ⇒ NotionRubyMapping::Query
Returns generated Query object.
96 97 98 |
# File 'lib/notion_ruby_mapping/property.rb', line 96 def filter_is_empty make_filter_query "is_empty", true end |
#filter_is_not_empty ⇒ NotionRubyMapping::Query
Returns generated Query object.
101 102 103 |
# File 'lib/notion_ruby_mapping/property.rb', line 101 def filter_is_not_empty make_filter_query "is_not_empty", true end |