File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -356,7 +356,6 @@ input SqlActionFilter {
356356
357357 """Negates the expression."""
358358 not : SqlActionFilter
359-
360359}
361360
362361"""
@@ -532,6 +531,28 @@ input StringFilter {
532531 """Greater than or equal to the specified value (case-insensitive)."""
533532 greaterThanOrEqualToInsensitive : String
534533
534+ """
535+ Fuzzy matches using pg_trgm trigram similarity. Tolerates typos and misspellings.
536+ """
537+ similarTo : TrgmSearchInput
538+
539+ """
540+ Fuzzy matches using pg_trgm word_similarity. Finds the best matching substring within the column value.
541+ """
542+ wordSimilarTo : TrgmSearchInput
543+ }
544+
545+ """
546+ Input for pg_trgm fuzzy text matching. Provide a search value and optional similarity threshold.
547+ """
548+ input TrgmSearchInput {
549+ """The text to fuzzy-match against. Typos and misspellings are tolerated."""
550+ value : String !
551+
552+ """
553+ Minimum similarity threshold (0.0 to 1.0). Higher = stricter matching. Default is 0.3.
554+ """
555+ threshold : Float
535556}
536557
537558"""
@@ -1182,4 +1203,4 @@ input DeleteSqlActionInput {
11821203 """
11831204 clientMutationId : String
11841205 id : Int !
1185- }
1206+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments