here’s my request:
query {
boards(ids: :BOARDID]) {
items_page(
limit: 1,
query_params: {
rules: :{
column_id: “status21__1”,
compare_value: a“UNPAID”],
operator: not_any_of
}],
operator: and
}
) {
items {
id
name
}
}
}
}
What I want to get is all items that don’t have specific status, but whatever details I write in compare_value I receve the same item. the item have ‘PAID’ status, so if I write there PAID not_any_of it anyway returns me the same answer.
To get more specific - I get that from the playground, so it’s not issue on my side.