fix(types): add client to mutation options (#644)

This commit is contained in:
Kyle Rose
2019-06-19 22:30:40 -07:00
committed by Guillaume Chau
parent 9419ffd03d
commit db95e91f07
+1
View File
@@ -48,6 +48,7 @@ export interface VueApolloMutationOptions<V, R> extends MutationOptions<R> {
mutation: DocumentNode;
variables?: VariableFn<V>;
optimisticResponse?: ((this: ApolloVueThisType<V>) => any) | Object;
client?: String
}
export interface VueApolloSubscriptionOptions<V, R> extends SubscriptionOptions {