From 9280090e037e729e1ea7da41d54372312a35ba79 Mon Sep 17 00:00:00 2001 From: Kyle Rose Date: Tue, 4 Jun 2019 09:10:37 -0700 Subject: [PATCH] add client to mutation options --- types/options.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/options.d.ts b/types/options.d.ts index 71e45370..5079738a 100644 --- a/types/options.d.ts +++ b/types/options.d.ts @@ -48,6 +48,7 @@ export interface VueApolloMutationOptions extends MutationOptions { mutation: DocumentNode; variables?: VariableFn; optimisticResponse?: ((this: ApolloVueThisType) => any) | Object; + client?: String } export interface VueApolloSubscriptionOptions extends SubscriptionOptions {