jok
Version:
Bundle of utility functions for code generation related to nodejs and graphql
10 lines (9 loc) • 320 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RootType = void 0;
var RootType;
(function (RootType) {
RootType["Query"] = "query";
RootType["Mutation"] = "mutation";
RootType["Subscription"] = "subscription";
})(RootType = exports.RootType || (exports.RootType = {}));