-
Notifications
You must be signed in to change notification settings - Fork 68
PATCH RELEASE ENG-413 Load all from os when no query #3956
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Ref eng-413 Signed-off-by: Rafael Leite <2132564+leite08@users.noreply.github.com>
WalkthroughThe changes standardize and clarify the handling of optional search query parameters across multiple modules by updating type annotations from mandatory strings to Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant SearchModule
participant OpenSearchService
Client->>SearchModule: searchDocuments(contentFilter: string | undefined)
SearchModule->>OpenSearchService: search with contentFilter (may be undefined)
OpenSearchService-->>SearchModule: search results
SearchModule-->>Client: results
sequenceDiagram
participant Client
participant SearchConsolidatedDirect
Client->>SearchConsolidatedDirect: search(query: string | undefined)
SearchConsolidatedDirect->>SearchPatientConsolidated: searchPatientConsolidated(query)
SearchPatientConsolidated-->>SearchConsolidatedDirect: results
SearchConsolidatedDirect-->>Client: results
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 ESLint
npm error code ERR_SSL_WRONG_VERSION_NUMBER 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (8)
🧰 Additional context used📓 Path-based instructions (1)`**/*.ts`: - Use the Onion Pattern to organize a package's code in layers - Try to use immutable code and avoid sharing state across different functions, objects, and systems - Try...
🧠 Learnings (3)packages/core/src/command/consolidated/search/fhir-resource/search-consolidated-direct.ts (1)
packages/core/src/external/opensearch/lexical/query.ts (1)
packages/core/src/command/consolidated/search/fhir-resource/search-consolidated.ts (1)
🧬 Code Graph Analysis (1)packages/core/src/external/opensearch/lexical/query.ts (1)
⏰ Context from checks skipped due to timeout of 90000ms (2)
🔇 Additional comments (18)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Issues:
Dependencies
none
Description
Load all from os when no query.
Testing
Release Plan
master
/production
Summary by CodeRabbit
New Features
Bug Fixes
Documentation