How to search items by string that contains in a items name

Hi,
Is there a way to use contains/like operator when performing a search query?
Like “name contains abc” instead of “name equals abc”…

I used this query:
query {
items_by_column_values (board_id: 162164, column_id: “name”, column_value: “abc”) {
id
name
column_values {
id
title
value
}
}
}

thanks

Is anyone answer for this query ?

hi hanny, i’ve had the same problem recently and came up with the following

items_page(
query_params: {rules: [{column_id: “ID”, compare_value: [“Value1”], operator: contains_text}
]}
) {
items {
id
}}