@@ -25,13 +25,15 @@ $ graphql-schema-diff --help
25
25
26
26
Options
27
27
--fail-on-dangerous-changes Exit with error on dangerous changes
28
- --ignore-breaking-changes Do not exit with error on breaking changes
29
- --create-html-output Creates an HTML file containing the diff
30
- --html-output-directory Directory where the HTML file should be stored (Default: ' ./schemaDiff' )
31
- --header, -H Header to send to all remote schema sources
32
- --left-schema-header Header to send to left remote schema source
33
- --right-schema-header Header to send to right remote schema source
34
- --sort-schema, -s Sort schemas prior to diffing
28
+ --fail-on-breaking-changes Exit with error on breaking changes
29
+ --fail-on-all-changes Exit with error on all changes
30
+ --use-colors Use colors for diff terminal output
31
+ --create-html-output Creates an HTML file containing the diff
32
+ --html-output-directory Directory where the HTML file should be stored (Default: ' ./schemaDiff' )
33
+ --header, -H Header to send to all remote schema sources
34
+ --left-schema-header Header to send to left remote schema source
35
+ --right-schema-header Header to send to right remote schema source
36
+ --sort-schema, -s Sort schemas prior to diffing
35
37
36
38
Examples
37
39
$ graphql-schema-diff https://example.com/graphql schema.graphql
@@ -69,3 +71,9 @@ getDiff(currentSchemaLocation, newSchemaLocation)
69
71
console .log (result .breakingChanges );
70
72
});
71
73
```
74
+
75
+
76
+ ## Related Packages
77
+
78
+ * [ GraphQL Inspector] ( https://github.com/kamilkisiela/graphql-inspector ) ouputs a list of changes between two GraphQL schemas.
79
+ * [ GraphQL Toolkit] ( https://github.com/ardatan/graphql-toolkit ) provides a set of utils for faster development of GraphQL tools.
0 commit comments