docs: fixes to type errors in guides (#13797)

This commit is contained in:
Shahed Nasser
2025-10-21 16:12:35 +03:00
committed by GitHub
parent d9249be6e6
commit 0d83918348
19 changed files with 922 additions and 682 deletions
@@ -102,11 +102,11 @@ module.exports = defineConfig({
options: {
// Memcached options...
},
}
]
}
}
]
},
],
},
},
],
})
```
@@ -130,7 +130,7 @@ const { data: products } = useQueryGraphStep({
options: {
cache: {
enable: true,
providers: ["caching-memcached"] // Specify Memcached provider
providers: ["caching-memcached"], // Specify Memcached provider
},
},
})
@@ -145,7 +145,7 @@ const cachingModuleService = container.resolve(Modules.CACHING)
await cachingModuleService.set({
key: "product-list",
data: products,
providers: ["caching-memcached"] // Specify Memcached provider
providers: ["caching-memcached"], // Specify Memcached provider
})
```