From 47dc2f3fb561fd59c063abb1af14589dbb51a257 Mon Sep 17 00:00:00 2001 From: Jack Moore Date: Fri, 30 Jun 2017 00:49:17 -0500 Subject: [PATCH] Added isDeprecated to GraphQLEnumValue --- types/graphql/type/definition.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/graphql/type/definition.d.ts b/types/graphql/type/definition.d.ts index cf077ad5ba..eb64172f40 100644 --- a/types/graphql/type/definition.d.ts +++ b/types/graphql/type/definition.d.ts @@ -456,6 +456,7 @@ export interface GraphQLEnumValueConfig { export interface GraphQLEnumValue { name: string; description: string; + isDeprecated?: boolean; deprecationReason: string; value: any; }