From 4ab50c667ea5c94314282664f4f23f7b8becb073 Mon Sep 17 00:00:00 2001 From: Pavel Lang Date: Sat, 8 Dec 2018 03:47:39 +0100 Subject: [PATCH] fix(graphql): add implements to keywords --- src/graphql/graphql.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphql/graphql.ts b/src/graphql/graphql.ts index 2799971f..5d4cbd07 100644 --- a/src/graphql/graphql.ts +++ b/src/graphql/graphql.ts @@ -45,7 +45,7 @@ export const language = { 'null', 'true', 'false', 'query', 'mutation', 'subscription', 'extend', 'schema', 'directive', - 'scalar', 'type', 'interface', 'union', 'enum', 'input', + 'scalar', 'type', 'interface', 'union', 'enum', 'input', 'implements', 'fragment', 'on', ],