From c7b8ea9853abfca3348a5fca3d86dcd3989dcc7b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 17 Mar 2026 11:41:54 +0000 Subject: [PATCH] chore: update schemas from constructive-db Auto-generated by schema-propagation workflow. Source: constructive-db@e6a308a3 --- sdk/migrate-client/schemas/migrate.graphql | 25 ++++++++++++++++++++-- sdk/migrate-client/src/index.ts | 1 - 2 files changed, 23 insertions(+), 3 deletions(-) delete mode 100644 sdk/migrate-client/src/index.ts diff --git a/sdk/migrate-client/schemas/migrate.graphql b/sdk/migrate-client/schemas/migrate.graphql index 241ee8faa..bde76ac28 100644 --- a/sdk/migrate-client/schemas/migrate.graphql +++ b/sdk/migrate-client/schemas/migrate.graphql @@ -356,7 +356,6 @@ input SqlActionFilter { """Negates the expression.""" not: SqlActionFilter - } """ @@ -532,6 +531,28 @@ input StringFilter { """Greater than or equal to the specified value (case-insensitive).""" greaterThanOrEqualToInsensitive: String + """ + Fuzzy matches using pg_trgm trigram similarity. Tolerates typos and misspellings. + """ + similarTo: TrgmSearchInput + + """ + Fuzzy matches using pg_trgm word_similarity. Finds the best matching substring within the column value. + """ + wordSimilarTo: TrgmSearchInput +} + +""" +Input for pg_trgm fuzzy text matching. Provide a search value and optional similarity threshold. +""" +input TrgmSearchInput { + """The text to fuzzy-match against. Typos and misspellings are tolerated.""" + value: String! + + """ + Minimum similarity threshold (0.0 to 1.0). Higher = stricter matching. Default is 0.3. + """ + threshold: Float } """ @@ -1182,4 +1203,4 @@ input DeleteSqlActionInput { """ clientMutationId: String id: Int! -} +} \ No newline at end of file diff --git a/sdk/migrate-client/src/index.ts b/sdk/migrate-client/src/index.ts deleted file mode 100644 index baad3d5e6..000000000 --- a/sdk/migrate-client/src/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './migrate/orm';