I have an account where some items on my board can’t be found with the items_by_column_values query in 2023-07.
Note that my column_value in both queries is the exact same, but in 2023-07 I don’t get any items back, but in 2023-10 I get many items back; as text3 in my case I’m using as a key to a different board.
query {
items_by_column_values (limit:200, board_id:4876931643, column_id:"text3", column_value:"Column Value")
{
id
name
}
}
BUT essentially the same request in 2023-10 does return a response.
query {
items_page_by_column_values (limit:200, board_id:4876931643, columns:{column_id:"text3", column_values:["Column Value"] })
{
items{
id
name
}
}
}