Skip to content

Commit c42155f

Browse files
authored
docs: fix typos in index modules docs (medusajs#12852)
1 parent 3cc512e commit c42155f

File tree

1 file changed

+2
-2
lines changed
  • www/apps/book/app/learn/fundamentals/module-links/index-module

1 file changed

+2
-2
lines changed

www/apps/book/app/learn/fundamentals/module-links/index-module/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Index Module is a tool to perform highly performant queries across modules,
1818

1919
While modules share the same database by default, Medusa [isolates modules](../../modules/isolation/page.mdx) to allow using external data sources or different database types.
2020

21-
So, when you retrieve data across modules using Query, Medusa aggregates the data coming from diffeent modules to create the end result. This approach limits your ability to filter data by linked modules. For example, you can't filter products (created in the Product Module) by their brand (created in the Brand Module).
21+
So, when you retrieve data across modules using Query, Medusa aggregates the data coming from different modules to create the end result. This approach limits your ability to filter data by linked modules. For example, you can't filter products (created in the Product Module) by their brand (created in the Brand Module).
2222

2323
The Index Module solves this problem by ingesting data into a central data store on application startup. The data store has a relational structure that enables efficiently filtering data ingested from different modules (and their data stores). So, when you retrieve data with the Index Module, you're retrieving it from the Index' data store, not the original data source.
2424

@@ -399,7 +399,7 @@ const {
399399

400400
This will return all products whose brand name starts with `Acme`.
401401

402-
### Use Request Query Configuations
402+
### Use Request Query Configurations
403403

404404
API routes using the `graph` method can configure default [query configurations](../query/page.mdx#request-query-configurations), such as which fields to retrieve, while also allowing clients to override them using query parameters.
405405

0 commit comments

Comments
 (0)