The current filtering feature lacks the use of the 'has' operator, making it impossible to search for substrings.
Description
This PR implements the has filtering based on the like SQL operator.
Filter expression example:
resource.name:"str" to search for entries containing the substring "str" in the value of resource.name
Context
The current filtering feature lacks the use of the 'has' operator, making it impossible to search for substrings.
Description
This PR implements the
has
filtering based on thelike
SQL operator. Filter expression example:resource.name:"str"
to search for entries containing the substring "str" in the value ofresource.name