Im trying to find a way to get all tasks associated to a user, that includes other tasks that contains other users. Heres my query, but i only get task that is only assigned to a user.
{
items_by_column_values (board_id: 123456, column_id: "person", column_value: "John Doe") {
id
name
column_values(ids: ["person"]){title id type text}
}
}
This query only get items that is assigned only to user John Doe. I want to get all items where John Doe is included as person.
Like the result below:
{
"data": {
"items_by_column_values": [
{
"id": "12121",
"name": "Setup Flutter",
"column_values": [
{
"title": "Person",
"id": "person",
"type": "multiple-person",
"text": "John Doe"
}
]
},
{
"id": "12121",
"name": "Create Login Page SSO",
"column_values": [
{
"title": "Person",
"id": "person",
"type": "multiple-person",
"text": "[Heisenberg, John Doe]"
}
]
}
]
},
"account_id": 1234
}