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 2e1becb commit bc2db60Copy full SHA for bc2db60
src/utilities/findBreakingChanges.js
@@ -102,7 +102,11 @@ export function findDangerousChanges(
102
return ((dangerousChanges: any): Array<DangerousChange>);
103
}
104
105
-function findSchemaChanges(
+/**
106
+ * Given two schemas, returns an Array containing descriptions of all the types
107
+ * of potentially breaking change and dangerous change
108
+ */
109
+export function findSchemaChanges(
110
oldSchema: GraphQLSchema,
111
newSchema: GraphQLSchema,
112
): Array<BreakingChange | DangerousChange> {
0 commit comments