🐛 Fixed a broken function

This commit is contained in:
Liyas Thomas
2020-01-10 09:06:08 +05:30
parent 57f7621567
commit 35a0d50918

View File

@@ -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() {