From 35a0d509183d7f259ae318c05c8ca77c45c8730e Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Fri, 10 Jan 2020 09:06:08 +0530 Subject: [PATCH] :bug: Fixed a broken function --- pages/graphql.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/graphql.vue b/pages/graphql.vue index fd0919f26..4f21ba2d8 100644 --- a/pages/graphql.vue +++ b/pages/graphql.vue @@ -594,7 +594,7 @@ export default { }, resolveRootType(type) { let t = type; - while (t.ofType !== null) t = t.ofType; + while (t.ofType != null) t = t.ofType; return t; }, copySchema() {