Open jousterview opened 6 years ago
Hello,
Yes you can sort by date using "sort" in your curl parameters.
For example in php
$criteria["sort"] = "date_start DESC";
To filter by date range:
$where["date_start"] = [">"=>$date->format('c')];
$criteria["where"] = $where;
@MrKalten it might be better if you provide a more universal example. cURL for example. Have no idea what does this mean [">"=>$date->format('c')];
Can we sort by date? List newest matches or filter by range?