Expand description
§graphql-schema-diff
This crate implements diffing of two GraphQL schemas, returning a list of changes. It powers the changelog feature and operation checks at Grafbase.
§Example
use graphql_schema_diff::{diff, Change, ChangeKind};
let source = r#"
type Pizza {
id: ID!
name: String!
toppings: [Topping!]!
}
enum Topping {
OLIVES
MUSHROOMS
PINEAPPLE
}
"#;
let target = r#"
type Pizza {
id: ID!
name: PizzaName
toppings: [Topping!]!
}
type PizzaName {
english: String
italian: String!
}
enum Topping {
OLIVES
MUSHROOMS
POTATO
}
"#;
let changes = diff(source, target).unwrap();
assert_eq!(changes,
&[
Change {
path: String::from("Pizza.name"),
kind: ChangeKind::ChangeFieldType
},
Change {
path: String::from("PizzaName"),
kind: ChangeKind::AddObjectType
},
Change {
path: String::from("Topping.PINEAPPLE"),
kind: ChangeKind::RemoveEnumValue
},
Change {
path: String::from("Topping.POTATO"),
kind: ChangeKind::AddEnumValue
}
]);
§Cargo features
serde
:Serialize
andDeserialize
impls forChange
(default: on).
Structs§
- Change
- A change that represents a meaningful difference between the two schemas. Changes have a
direction: from source to target. For example, if
kind
isAddField
, it means the field does not exist in thesource
schema but it does exist in thetarget
schema.
Enums§
Functions§
- diff
- Diff two GraphQL schemas.