Skip to content

Commit 389069c

Browse files
chore: update schemas from constructive-db
Auto-generated by schema-propagation workflow. Source: constructive-db@cf1501b1
1 parent f4c3938 commit 389069c

2 files changed

Lines changed: 23 additions & 3 deletions

File tree

sdk/migrate-client/schemas/migrate.graphql

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff 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+
}

sdk/migrate-client/src/index.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)