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

Instance Method Details

#filter_is_emptyNotionRubyMapping::Query

Returns generated Query object.

Returns:



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_emptyNotionRubyMapping::Query

Returns generated Query object.

Returns:



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