@@ -4261,6 +4261,9 @@ input StringFilter {
42614261 # Raw SQL 'not ilike', wildcards must be present and are not escaped
42624262 notLikeInsensitive: String
42634263
4264+ # Raw SQL 'not similar to', wildcards are not escaped
4265+ notSimilarTo: String
4266+
42644267 # Checks for strings that do not start with this value. Case sensitive.
42654268 notStartsWith: String
42664269
@@ -4270,6 +4273,9 @@ input StringFilter {
42704273 # If set to true, checks for null values. If set to false, checks for non-null values.
42714274 null: Boolean
42724275
4276+ # Raw SQL 'similar to', wildcards are not escaped
4277+ similarTo: String
4278+
42734279 # Checks for strings starting with this value. Case sensitive.
42744280 startsWith: String
42754281
@@ -7758,6 +7764,9 @@ input StringFilter {
77587764 # Raw SQL 'not ilike', wildcards must be present and are not escaped
77597765 notLikeInsensitive: String
77607766
7767+ # Raw SQL 'not similar to', wildcards are not escaped
7768+ notSimilarTo: String
7769+
77617770 # Checks for strings that do not start with this value. Case sensitive.
77627771 notStartsWith: String
77637772
@@ -7767,6 +7776,9 @@ input StringFilter {
77677776 # If set to true, checks for null values. If set to false, checks for non-null values.
77687777 null: Boolean
77697778
7779+ # Raw SQL 'similar to', wildcards are not escaped
7780+ similarTo: String
7781+
77707782 # Checks for strings starting with this value. Case sensitive.
77717783 startsWith: String
77727784
0 commit comments