Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion config/navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,8 @@
"resources/demos/typo_tolerance",
"resources/demos/voice_search",
"resources/demos/rubygems",
"resources/demos/hydration"
"resources/demos/hydration",
"resources/demos/federated_search"
]
},
{
Expand Down
23 changes: 23 additions & 0 deletions resources/demos/federated_search.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: Federated Search
sidebarTitle: Federated Search
Comment on lines +2 to +3
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Use sentence-style capitalization: Federated search

Both title and sidebarTitle capitalize "Search", which is neither a proper noun nor a product/acronym name.

✏️ Proposed fix
-title: Federated Search
-sidebarTitle: Federated Search
+title: Federated search
+sidebarTitle: Federated search

As per coding guidelines: "Use sentence-style capitalization in headings (first word and proper nouns only). Exceptions: product names, acronyms, and patterns like 'Step 1: Do this'."

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
title: Federated Search
sidebarTitle: Federated Search
title: Federated search
sidebarTitle: Federated search
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@resources/demos/federated_search.mdx` around lines 2 - 3, Change the
frontmatter values for title and sidebarTitle to use sentence-style
capitalization by making only the first word capitalized: replace "Federated
Search" with "Federated search" for both title and sidebarTitle (edit the
frontmatter keys title and sidebarTitle in the federated_search.mdx content).

description: Compare multi-search with and without result federation
---

<Info>
**Live demo**: [federated-search.meilisearch.com](https://federated-search.meilisearch.com)
</Info>

Explore Meilisearch's federated search in action. Search across a movies index and an actors index, then toggle between two modes: independent per-index results displayed side by side, or a single ranked list
merged across both indexes.

## Links

<CardGroup cols={2}>
<Card title="Try the demo" icon="globe" href="https://federated-search.meilisearch.com">
Toggle between multi-index and federated modes
</Card>
<Card title="Federated search guide" icon="layer-group" href="/capabilities/multi_search/getting_started/federated_search">
Use federated search in your app
</Card>
</CardGroup>
Loading