Delay between board update and API data availability

I would investigate the preview of API-Version 2023-10 and the item_page_by_column_values. Items page by column values you will want to also look at API Versioning

This is the replacement, its built for mondayDB, and offers much greater search power with comparison operators.

The old items_by_column_value is deprecated in 2023-10 and will not work.

2023-07 will remain default API until January 15th. API 2023-10 will be stable in October, but require specifying it to use it. Starting January 15th, 2024-01 will become stable default and 2023-10 will be deprecated. 2023-10 has a number of breaking changes Release notes

Hello @marcdiep,

What @codyfrisch said is correct (Thank you Cody!)

You can use a query like this one from API’s version 2023-10:

{
  items_page_by_column_values(
    limit: 50
    board_id: 1234567890
    columns: [{column_id: "text", column_values: ["Some text"]}]
  ) {
    cursor
    items {
      id
      name
    }
  }
}

And it will have no waiting time between the change and the moment the change is visible via the query :grin:

Cheers,
Matias

1 Like

Perfect, that works! Thank you.

1 Like

Hello again,

I am glad that’s the case!!

Let us know if you need anything else :grin:

Cheers,
Matias

1 Like