Rename fullTextSearch composite filter to unifiedSearch in skills docs#82
Merged
pyramation merged 1 commit intomainfrom Apr 2, 2026
Merged
Conversation
Update all references to the composite GraphQL filter field from fullTextSearch to unifiedSearch across graphile-search, constructive-graphql, and constructive-ai skills documentation. TSVector-specific references (fullTextSearchTsv, filterPrefix, etc.) and metaschema table references (db.fullTextSearch.create(), full_text_search table) are intentionally left unchanged. Companion to constructive-io/constructive#956.
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Renames all references to the composite GraphQL filter field from
fullTextSearchtounifiedSearchacross the skills documentation. This disambiguates the composite multi-algorithm filter (which fans out to tsvector + BM25 + trgm simultaneously) from the tsvector-specificfullTextSearchTsvper-adapter filter.Companion to constructive-io/constructive#956 which renames the actual plugin code, codegen, and tests.
What changed (13 files):
graphile-search/SKILL.md— field name, config option (enableFullTextSearch→enableUnifiedSearch), descriptiongraphile-search/references/— adapter flag descriptions (supportsTextSearchcomment), codegen SDK query examples, adapter interface JSDocconstructive-graphql/SKILL.md— quick start examples, search strategy table, reference tableconstructive-graphql/references/— search-composite, search-trigram, search-postgis, search-ragconstructive-ai/references/rag-pipeline.md— hybrid search exampleWhat was intentionally left unchanged:
fullTextSearchTsv(tsvector adapter filter field name)db.fullTextSearch.create()/.update()/.delete()/.findMany()(metaschema table ORM operations insearch-tsvector.md)filterPrefix: 'fullText'(tsvector adapter config)fullTextScalarName(GraphQL scalar config)Review & Testing Checklist for Human
fullTextSearchreferences were missed: Rungrep -r 'fullTextSearch' .agents/skills/ | grep -v 'fullTextSearchTsv' | grep -v 'db\.fullTextSearch' | grep -v 'fullTextSearch\.create' | grep -v 'fullTextSearch\.update' | grep -v 'fullTextSearch\.delete' | grep -v 'fullTextSearch\.findMany' | grep -v 'filterPrefix' | grep -v 'fullTextScalarName' | grep -v 'fullTextBodyTsv'— should return zero resultssearch-tsvector.md— alldb.fullTextSearch.*ORM calls andfullTextSearchTsvfilter usages should remain unchangedNotes
enableUnifiedSearch: true,ingraphile-search/SKILL.mdline 79 has slightly different trailing whitespace alignment than the surrounding config lines. Non-functional.Link to Devin session: https://app.devin.ai/sessions/e35003b7898c437e8d69a0c70b6020f2
Requested by: @pyramation