You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message: `Enum value '${newEnum.name}.${newValue.name}' deprecation reason changed from '${oldValue.deprecationReason}' to '${newValue.deprecationReason}'`,
64
+
path: [newEnum.name,oldValue.name].join('.'),
65
+
};
66
+
}
67
+
68
+
exportfunctionenumValueDeprecationReasonAdded(
69
+
newEnum: GraphQLEnumType,
70
+
oldValue: GraphQLEnumValue,
71
+
newValue: GraphQLEnumValue,
72
+
): Change{
73
+
return{
74
+
criticality: {
75
+
level: CriticalityLevel.NonBreaking,
76
+
},
77
+
type: ChangeType.EnumValueDeprecationReasonAdded,
78
+
message: `Enum value '${newEnum.name}.${newValue.name}' was deprecated with reason '${newValue.deprecationReason}'`,
0 commit comments