graphql-schema-diff 0.5.0

Semantic diffing for GraphQL schemas
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# --- #

extend schema
  @link(url: "https://specs.apollo.dev/federation/v2.3", import: ["@key", "@shareable", "@inaccessible", "@override"])

type Product @key(fields: "id") {
  id: ID!
  size: Float!
  color: String!
  price: Float!
}

type Query {
  products: [Product]
}