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 { }
};