Repository URL to install this package:
|
Version:
1.2.8 ▾
|
"use strict";
var _graphene = require("graphene");
let Query = class Query extends _graphene.ObjectType {
constructor(...args) {
var _temp;
return _temp = super(...args), this.hello = new _graphene.String(), _temp;
}
helloResolver() {
return "Hello world!";
}
};
const schema = new _graphene.Schema(Query);