CQL queries using "and" often provide results that match an "either" query, not "both."
We recommend using ".filter" on individual items to have both meet the criteria of the query.
Here's an example where the link name and URL must both match for the query to pass:
links("Monitoring").filter((link) => link.name = "Test Link" and link.url.matches("https://mytesturl.com+")).count > 0
Comments
0 comments
Article is closed for comments.