We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b01eb commit 31db107Copy full SHA for 31db107
docs/source/advanced/multi-modules.mdx
@@ -27,10 +27,14 @@ apollo {
27
// If you need to specify the location of your schema files
28
schemaFiles.from(/*...*/)
29
30
- // define options that must be shared between all modules using this schema
+ // scalar mappings and generateDataBuilders must be defined in the schema module
31
mapScalar(/*...*/)
32
generateDataBuilders.set(true)
33
- // more options...
+
34
+ // other options can be different between modules.
35
+ // if you want those options to be applied to all modules, use a convention plugin and shared build logic.
36
+ useSemanticNaming.set(true)
37
+ generateFragmentImplementations.set(true)
38
}
39
40
```
0 commit comments