From 3657f0992f020f14e2d004d3d49df765398fef31 Mon Sep 17 00:00:00 2001 From: Sibelius Seraphini Date: Fri, 14 Sep 2018 15:29:46 -0300 Subject: [PATCH] feat(graphql): add deprecationReason in mutationConfig --- types/graphql-relay/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/graphql-relay/index.d.ts b/types/graphql-relay/index.d.ts index 842e1ad4f1..87634b98c9 100644 --- a/types/graphql-relay/index.d.ts +++ b/types/graphql-relay/index.d.ts @@ -244,6 +244,7 @@ export interface MutationConfig { inputFields: Thunk; outputFields: Thunk>; mutateAndGetPayload: mutationFn; + deprecationReason?: string; } /**