You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/utils/plugins-helpers/src/types.ts
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,7 @@ export namespace Types {
252
252
/**
253
253
* @description A flag to overwrite files if they already exist when generating code (`true` by default).
254
254
*
255
-
* For more details: https://graphql-code-generator.com/docs/getting-started/codegen-config
255
+
* For more details: https://graphql-code-generator.com/docs/config-reference/codegen-config
256
256
*/
257
257
overwrite?: boolean;
258
258
/**
@@ -267,7 +267,7 @@ export namespace Types {
267
267
*
268
268
* You can specify either a single file, or multiple.
269
269
*
270
-
* For more details: https://graphql-code-generator.com/docs/getting-started/documents-field
270
+
* For more details: https://graphql-code-generator.com/docs/config-reference/documents-field
271
271
*/
272
272
documents?: InstanceOrArray<OperationDocument>;
273
273
/**
@@ -283,7 +283,7 @@ export namespace Types {
283
283
*
284
284
* You can specify either a single schema, or multiple, and GraphQL Code Generator will merge the schemas into a single schema.
285
285
*
286
-
* For more details: https://graphql-code-generator.com/docs/getting-started/schema-field
286
+
* For more details: https://graphql-code-generator.com/docs/config-reference/schema-field
287
287
*/
288
288
schema?: InstanceOrArray<Schema>;
289
289
/**
@@ -292,14 +292,14 @@ export namespace Types {
292
292
*
293
293
* The options may vary depends on what plugins you are using.
294
294
*
295
-
* For more details: https://graphql-code-generator.com/docs/getting-started/config-field
295
+
* For more details: https://graphql-code-generator.com/docs/config-reference/config-field
296
296
*/
297
297
config?: PluginConfig;
298
298
/**
299
299
* @description Specifies scripts to run when events are happening in the codegen core.
300
300
* Hooks defined on that level will effect only the current output files.
301
301
*
302
-
* For more details: https://graphql-code-generator.com/docs/getting-started/lifecycle-hooks
302
+
* For more details: https://graphql-code-generator.com/docs/config-reference/lifecycle-hooks
303
303
*/
304
304
hooks?: Partial<LifecycleHooksDefinition>;
305
305
}
@@ -356,14 +356,14 @@ export namespace Types {
356
356
*
357
357
* You can specify either a single schema, or multiple, and GraphQL Code Generator will merge the schemas into a single schema.
358
358
*
359
-
* For more details: https://graphql-code-generator.com/docs/getting-started/schema-field
359
+
* For more details: https://graphql-code-generator.com/docs/config-reference/schema-field
360
360
*/
361
361
schema?: InstanceOrArray<Schema>;
362
362
/**
363
363
* @description A path to a file which defines custom Node.JS require() handlers for custom file extensions.
364
364
* This is essential if the code generator has to go through files which require other files in an unsupported format (by default).
365
365
*
366
-
* For more details: https://graphql-code-generator.com/docs/getting-started/require-field
366
+
* For more details: https://graphql-code-generator.com/docs/config-reference/require-field
367
367
* See more information about require.extensions: https://gist.github.com/jamestalmage/df922691475cff66c7e6.
368
368
*
369
369
* Note: values that specified in your .yml file will get loaded after loading the config .yml file.
@@ -386,7 +386,7 @@ export namespace Types {
386
386
*
387
387
* You can specify either a single file, or multiple.
388
388
*
389
-
* For more details: https://graphql-code-generator.com/docs/getting-started/documents-field
389
+
* For more details: https://graphql-code-generator.com/docs/config-reference/documents-field
390
390
*/
391
391
documents?: InstanceOrArray<OperationDocument>;
392
392
/**
@@ -397,21 +397,21 @@ export namespace Types {
397
397
*
398
398
* The options may vary depends on what plugins you are using.
399
399
*
400
-
* For more details: https://graphql-code-generator.com/docs/getting-started/config-field
400
+
* For more details: https://graphql-code-generator.com/docs/config-reference/config-field
401
401
*/
402
402
config?: PluginConfig;
403
403
/**
404
404
* @description A map where the key represents an output path for the generated code and the value represents a set of options which are relevant for that specific file.
405
405
*
406
-
* For more details: https://graphql-code-generator.com/docs/getting-started/codegen-config
406
+
* For more details: https://graphql-code-generator.com/docs/config-reference/codegen-config
* @description A flag to overwrite files if they already exist when generating code (`true` by default).
413
413
*
414
-
* For more details: https://graphql-code-generator.com/docs/getting-started/codegen-config
414
+
* For more details: https://graphql-code-generator.com/docs/config-reference/codegen-config
415
415
*/
416
416
overwrite?: boolean;
417
417
/**
@@ -452,7 +452,7 @@ export namespace Types {
452
452
/**
453
453
* @description Allows you to override the configuration for `@graphql-tools/graphql-tag-pluck`, the tool that extracts your GraphQL operations from your code files.
454
454
*
455
-
* For more details: https://graphql-code-generator.com/docs/getting-started/documents-field#graphql-tag-pluck
455
+
* For more details: https://graphql-code-generator.com/docs/config-reference/documents-field#graphql-tag-pluck
456
456
*/
457
457
pluckConfig?: {
458
458
/**
@@ -481,7 +481,7 @@ export namespace Types {
481
481
* @description Specifies scripts to run when events are happening in the codegen core.
482
482
* Hooks defined on that level will effect all output files.
483
483
*
484
-
* For more details: https://graphql-code-generator.com/docs/getting-started/lifecycle-hooks
484
+
* For more details: https://graphql-code-generator.com/docs/config-reference/lifecycle-hooks
0 commit comments