graphql-schema-diff 0.5.0

Semantic diffing for GraphQL schemas
Documentation
schema {
  query: Root
}

type Root {
  ping: Pong
}

scalar Pong

# --- #

schema {
  mutation: Root
}

type Root {
  pong: Pong
}

scalar Pong