Uses of Class
graphql.schema.diff.SchemaDiffSet
-
Packages that use SchemaDiffSet Package Description graphql.schema.diff -
-
Uses of SchemaDiffSet in graphql.schema.diff
Methods in graphql.schema.diff that return SchemaDiffSet Modifier and Type Method Description static SchemaDiffSet
SchemaDiffSet. diffSetFromIntrospection(GraphQLSchema oldSchema, GraphQLSchema newSchema)
Creates an schema diff set out of the result of 2 introspection queries.static SchemaDiffSet
SchemaDiffSet. diffSetFromIntrospection(java.util.Map<java.lang.String,java.lang.Object> introspectionOld, java.util.Map<java.lang.String,java.lang.Object> introspectionNew)
Creates an schema diff set out of the result of 2 introspection queries.static SchemaDiffSet
SchemaDiffSet. diffSetFromSdl(GraphQLSchema oldSchema, GraphQLSchema newSchema)
Creates an schema diff set out of the two SDL definition Strings.static SchemaDiffSet
SchemaDiffSet. diffSetFromSdl(java.lang.String oldSchemaSdl, java.lang.String newSchemaSdl)
Creates an schema diff set out of the two SDL definition Strings.Methods in graphql.schema.diff with parameters of type SchemaDiffSet Modifier and Type Method Description int
SchemaDiff. diffSchema(SchemaDiffSet schemaDiffSet, DifferenceReporter reporter)
This will perform a difference on the two schemas.
-