<aside> đ Links (Controller base class)
Notion Ruby Mapping Public API Reference
</aside>
<aside> âšī¸ â Table of Contents
</aside>
Query object is usually filter_with_XXX
methods, so Query.new
is only used for sort criteria. See Sort criteria
in C: Sort criteria.
query = Query.new page_size: 200
=> #<NotionRubyMapping::Query:0x0000000109461298 @filter={}, @page_size=200, @sort=[], @start_cursor=nil>
and
joins another_query using an and condition. See Complex conditions
in B: complex conditions.
Using ascending
, sort criteria can be appended to an existing query object. If you don't use the previous filters, you can generate by Query.new
. See Sort criteria
in C: Sort criteria.
Using descending
, sort criteria can be appended to an existing query object. If you don't use the previous filters, you can generate by Query.new
. See Sort criteria
in C: Sort criteria.