graphql-schema-diff 0.5.0

Semantic diffing for GraphQL schemas
Documentation
type Query {
  ping: Pong
}

scalar Pong

enum Test @fst @snd(name: "test") @third {
  YES # removed value
  NO @default @negative
  NOWAY @negative
}

# --- #

type Query {
  ping: Pong
}

scalar Pong

enum Test @fst @snd(name: "test") @third {
  DEFINITELY # added value
  NO @default @negative
  NOWAY @negative
}