New feature: Ordering boards by recently created or updated! 🌟

Hey hey, awesome builders and API users! :star2:

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:

Getting the latest data from your monday.com boards should be a little easier now :slight_smile:

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
}
}

1 Like

Amazing! Is there a way to order boards by name field?