Merge pull request #17635 from jtmthf/graphql

Added isDeprecated to GraphQLEnumValue for graphql
This commit is contained in:
Ryan Cavanaugh
2017-07-12 11:46:43 -07:00
committed by GitHub
+1
View File
@@ -456,6 +456,7 @@ export interface GraphQLEnumValueConfig {
export interface GraphQLEnumValue {
name: string;
description: string;
isDeprecated?: boolean;
deprecationReason: string;
value: any;
}