The below query stopped working for text fields. It was working before the latest API version upgrade. I am using the API version: 2023-10
query {
boards (ids:xxxxxxx) {
items_page (
query_params: {
rules: [
{
column_id: “custom_text_field”,
compare_value: [“541”],
operator: contains_text
},
]
},
) {
items {
name
id
group {
id
}
column_values {
id
text
type
}
}
}
}
}