Hi,
I want to search my board by item names using items_page_by_column_values
Grapql query. When I run the following query it returns empty result even though the item is on the board as active.
items_page_by_column_values(board_id:12345678, columns:[{column_id: "name", column_values: ["Task"]}]){
items{
id
}
}
Here is my board view:
As you see there are items including “Task” keyword but the api does not mange to find them.
How can I retrieve my items searching by the item name leveraging the API?
Thanks.