I’m trying to find all the items assigned to a user.
When I query a board, I get this response:
query {
items {
name
column_values {
id
value
}
}
}
...
"column_values": :
{
"id": "person",
"value": "{\\"personsAndTeams\\":"{\\"id\\":14983475,\\"kind\\":\\"person\\"}]}"
},
...
But when I try and run this query to get the items by user, I get no response:
query {
items_by_column_values (board_id: 643168050, column_id: "person", column_value: "{\\"personsAndTeams\\":"{\\"id\\":14983475,\\"kind\\":\\"person\\"}]}") {
id
name
column_values {
id,
title,
value
}
}
}