@isograph/compiler 0.0.0-main-dc615175 → 0.0.0-main-ae4b2d9e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/linux-arm64/isograph_cli +0 -0
- package/artifacts/linux-x64/isograph_cli +0 -0
- package/artifacts/macos-arm64/isograph_cli +0 -0
- package/artifacts/macos-x64/isograph_cli +0 -0
- package/artifacts/win-x64/isograph_cli.exe +0 -0
- package/isograph-config-schema.json +5 -0
- package/package.json +1 -1
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -84,6 +84,11 @@
|
|
84
84
|
"ConfigFileOptions": {
|
85
85
|
"type": "object",
|
86
86
|
"properties": {
|
87
|
+
"generate_combined_schema": {
|
88
|
+
"description": "Whether to generate a GraphQL schema containing the original schema plus all fields defined as client fields.",
|
89
|
+
"default": false,
|
90
|
+
"type": "boolean"
|
91
|
+
},
|
87
92
|
"include_file_extensions_in_import_statements": {
|
88
93
|
"description": "Should the compiler include file extensions in import statements in generated files? e.g. should it import ./param_type or ./param_type.ts?",
|
89
94
|
"default": false,
|
package/package.json
CHANGED