From 60f5d345cb52e8184eda465a3abf8043e9344900 Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Wed, 28 Aug 2019 14:51:35 -0700 Subject: [PATCH] Mark`options` in getVariableValues(...) optional --- tstypes/execution/values.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tstypes/execution/values.d.ts b/tstypes/execution/values.d.ts index 5af3e040db..8b6c45b1e7 100644 --- a/tstypes/execution/values.d.ts +++ b/tstypes/execution/values.d.ts @@ -31,7 +31,7 @@ export function getVariableValues( schema: GraphQLSchema, varDefNodes: VariableDefinitionNode[], inputs: { [key: string]: any }, - options: { maxErrors?: number }, + options?: { maxErrors?: number }, ): CoercedVariableValues; /**