If I use an ID column in the following query then it gives me an error. All other columns are fine. I do not have any other unique feature in the board to search by, only ID. How do I fix the error?
{
items_page_by_column_values(
board_id: XXX
columns: [{column_id: “item_id”, column_values: “YYY”}]
) {
cursor
items {
name
column_values(ids: “status”) {
value
text
}
}
}
}
This is the error that I get:
{
“error_code”: “UnsupportedItemsByColumnValueQuery”,
“status_code”: 200,
“error_message”: “Column of type pulse-id is not yet supported as a filter”,
“error_data”: {
“column_id”: “item_id”,
“column_type”: “pulse-id”
}
}