graphql-schema-diff 0.6.0

Semantic diffing for GraphQL schemas
Documentation
type A {
  id: ID!
}

type B {
  id: ID!
}

type C {
  id: ID!
}

type D {
  id: ID!
}

union Test = B | A | D

# --- #

type A {
  id: ID!
}

type B {
  id: ID!
}

type C {
  id: ID!
}

type D {
  id: ID!
}

union Test = B | C