Items_page sort items by updated_at/created_at

Hello everyone!

You can use these queries now to order your results (documentation on the way):

{
  boards(ids: [1234567890]) {
    items_page(
      query_params: {order_by: [{column_id: "__creation_log__", direction: desc}]}
    ) {
      items {
        id
        created_at
      }
    }
  }
}
{
  boards(ids: [1234567890]) {
    items_page(
      query_params: {order_by: [{column_id: "__last_updated__", direction: asc}]}
    ) {
      items {
        id
        updated_at
      }
    }
  }
}

Cheers,
Matias