graphql-schema-diff 0.2.0

Semantic diffing for GraphQL schemas
Documentation
interface Candy {
  calories: String!
}

type Cookie {
  id: ID!
  calories: String!
  firmness: Float
}

# --- #

interface Candy {
  calories: String!
}

type Cookie implements Candy {
  id: ID!
  calories: String!
  firmness: Float
}