Hey,
Im making an API call (can see below). sometimes it will return values and sometimes it will not.
If I will wait I might get values back. didnt find any pattern…
When querying the record itself, it finds it with the correct value in the status.
The condition column type is a Select (which should support this functionality, according to the API docs).
Is any one can assist me to understand why I do not see the relevant records always?
Thanks!
Eitan
query ($boardId: Int!, $columnId: String!, $columnValue: String!){
items_by_column_values (board_id: $boardId, column_id: $columnId, column_value: $columnValue) {
id
name
column_values{
title
value
id
text
additional_info
type
}
}
}
Parameters:
{“boardId”:XXXXXXX, “columnId”:“status1”, “columnValue”:“Ready For Review”}