Hey hey, awesome builders and API users!
Itβs Alex from the monday.com team and I wanted to share a quick and awesome update here.
We are happy to announce a new addition to our API, which was a highly requested feature previously. Now, you are able to sort the boards query results using the order_by argument. The sorting options are:
- Board creation date - order_by: created_at
- Last activity on the board - order_by: used_at
Getting the latest data from your monday.com boards should be a little easier now
You can find more info on this in our documentation.
Here are both queries for your conveninennce:
Used most recently:
query {
boards (order_by: used_at) {
id
name
}
}
Created most recently
query {
boards (order_by: created_at) {
id
name
}
}