MondayApi items_page search by link

Hello Monday team, I 've been trying to search items my URL, but this query is not working as per the documentation i can use any_of operation with the URL as a compare_value: documentation reference:

Your response will be highly appreciated, Thanks
var request = new GraphQLRequest
{
Query = @“query {
boards (ids: [3923377470]) {
items_page (
limit: 1,
query_params: {
rules: [
{ column_id: ““board_id””, compare_value: [”“my_url”“], operator: any_of }
]
}
) {
cursor
items {
id
name
group { id title }
column_values {
id type text value
… on StatusValue {
index text type label value
label_style { border color }
}
}
}
}
}
}”,
Variables = new { }
};

See also my other reply:

See the Link column reference and the note.

*Please note that you can use either the URL or display text when using the any_of, not_any_of, contains_text, or not_contains_text operators, but it must match whatever is in the UI. For example, if the item just has a URL without display text, you can search by the URL. If display text is present, you must search by that and not the URL.