Added isDeprecated to GraphQLEnumValue

This commit is contained in:
Jack Moore
2017-06-30 00:49:17 -05:00
parent 00222e6b0a
commit 47dc2f3fb5

View File

@@ -456,6 +456,7 @@ export interface GraphQLEnumValueConfig {
export interface GraphQLEnumValue {
name: string;
description: string;
isDeprecated?: boolean;
deprecationReason: string;
value: any;
}