🐛 Fixed a broken function
This commit is contained in:
parent
57f7621567
commit
35a0d50918
1 changed files with 1 additions and 1 deletions
|
|
@ -594,7 +594,7 @@ export default {
|
||||||
},
|
},
|
||||||
resolveRootType(type) {
|
resolveRootType(type) {
|
||||||
let t = type;
|
let t = type;
|
||||||
while (t.ofType !== null) t = t.ofType;
|
while (t.ofType != null) t = t.ofType;
|
||||||
return t;
|
return t;
|
||||||
},
|
},
|
||||||
copySchema() {
|
copySchema() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue