Module: NotionRubyMapping::StartsWithEndsWith

Included in:
FormulaProperty, TextProperty
Defined in:
lib/notion_ruby_mapping/property.rb

Overview

module for make query of starts_with and ends_with

Instance Method Summary collapse

Instance Method Details

#filter_ends_with(value) ⇒ NotionRubyMapping::Query



88
89
90
# File 'lib/notion_ruby_mapping/property.rb', line 88

def filter_ends_with(value)
  make_filter_query "ends_with", value
end

#filter_starts_with(value) ⇒ NotionRubyMapping::Query



82
83
84
# File 'lib/notion_ruby_mapping/property.rb', line 82

def filter_starts_with(value)
  make_filter_query "starts_with", value
end