diff --git a/www/apps/book/app/advanced-development/modules/module-links/page.mdx b/www/apps/book/app/advanced-development/modules/module-links/page.mdx index d038997355..c42415b514 100644 --- a/www/apps/book/app/advanced-development/modules/module-links/page.mdx +++ b/www/apps/book/app/advanced-development/modules/module-links/page.mdx @@ -32,31 +32,6 @@ You can then retrieve data across the linked modules, and manage their linked re --- -## Prerequisite: isQueryable Configuration - -Before you define a module link, you must enable the `isQueryable` configuration of the module. - -For example: - -```js -import { HELLO_MODULE } from "./src/modules/hello" -// ... - -module.exports = defineConfig({ - // ... - modules: { - [HELLO_MODULE]: { - resolve: "./modules/hello", - definition: { - isQueryable: true, - }, - }, - }, -}) -``` - ---- - ## How to Define a Module Link? ### 1. Create Link File diff --git a/www/apps/book/app/advanced-development/modules/remote-query/page.mdx b/www/apps/book/app/advanced-development/modules/remote-query/page.mdx index e9760fa4ba..0565017d0e 100644 --- a/www/apps/book/app/advanced-development/modules/remote-query/page.mdx +++ b/www/apps/book/app/advanced-development/modules/remote-query/page.mdx @@ -14,12 +14,6 @@ The remote query fetches data across modules. It’s a function registered in th In your resources, such as API routes or workflows, you can resolve the remote query to fetch data across custom modules and Medusa’s commerce modules. - - -- [Enable the isQueryable configuration of the module](../module-links/page.mdx#prerequisite-isqueryable-configuration) - - - --- ## Remote Query Example diff --git a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx index c35959d646..39886ace07 100644 --- a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx +++ b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx @@ -144,9 +144,6 @@ module.exports = defineConfig({ modules: { marketplaceModuleService: { resolve: "./modules/marketplace", - definition: { - isQueryable: true, - }, }, }, })