where colum1 = value1 and colum2 = value2
query {
items_by_column_values(
board_id: 1234567890,
column_id: "status",
column_value: "Done"
)
{
id
name
column_values {
id
text
value
}
}
items_by_column_values(
board_id: 1234567890,
column_id: "status2",
column_value: "Reviewing"
)
{
id
name
column_values {
id
text
value
}
}
}