graphql-schema-diff 0.6.0

Semantic diffing for GraphQL schemas
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
interface Food implements Node @nestedInterface {
  kcal(sources: [String]): Int!
}

type Query {
  fruitCreate(dryRun: Boolean, input: FruitCreateInput! = { kcal: 46 }): Fruit
}

# --- #

interface Food implements Node @nestedInterface {
  kcal: Int!
}

type Query {
  fruitCreate(input: FruitCreateInput! = { kcal: 46 }): Fruit
}