Description Usage Arguments Value Examples
The compound_sort
function combines a list of sorts into a compound one.
Each element in this list should be an output of property_sort
.
This function is only meant for use
within the query_database
function.
1 |
... |
A list of property sorts. |
An object of class notionr_compund_sort
.
1 2 3 4 5 6 7 8 9 10 11 12 | compound_sort(
property_sort(
property = "Ingredients",
timestamp = "last_edited_time",
direction = "descending"
),
property_sort(
property = "Travel Destinations",
timestamp = "created_time",
direction = "ascending"
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.