Skip to main content

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

  • February 2, 2021
  • 1 reply
  • 2279 views

AlexSavchuk
Forum|alt.badge.img

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

1 reply

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