graphql-schema-diff 0.6.0

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

enum Pong {
  Yes
  NO
}

type Myutation {
  recordScore(score: Int): Boolean
}

# --- #

schema {
  query: Kwery
  mutation: Myutation
}

type Kwery {
  ping: Pong
}

enum Pong {
  Yes
  NO
}

type Myutation {
  recordScore(score: Int): Boolean
}