@graphql-tools/stitch
Version:
A set of utils for faster development of GraphQL tools
10 lines (9 loc) • 357 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValidationLevel = void 0;
var ValidationLevel;
(function (ValidationLevel) {
ValidationLevel["Error"] = "error";
ValidationLevel["Warn"] = "warn";
ValidationLevel["Off"] = "off";
})(ValidationLevel = exports.ValidationLevel || (exports.ValidationLevel = {}));
;