graphql-schema-diff 0.6.0

Semantic diffing for GraphQL schemas
Documentation
type Query {
  hi: String!
}

# --- #

scalar ISBN @domain

interface TestInterface {
  theory: String
}

enum TheEnum {
  YEA
  NAY @default
}

input TheInputType {
  enumField: TheEnum
}

type TheObjectType implements TestInterface
@domain {
  theory: String
}

directive @domain on ENUM_VALUE

type Query {
  hi: String!
}