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