@terabits/grapi
Version:
Grapi Schema Generator For GraphQL Server
21 lines (20 loc) • 518 B
JavaScript
;
exports.__esModule = true;
var graphql_1 = require("graphql");
var ListValue = (function () {
function ListValue(_a) {
var values = _a.values;
this.values = values;
}
ListValue.prototype.isScalar = function () {
return false;
};
ListValue.prototype.getType = function () {
return graphql_1.Kind.LIST;
};
ListValue.prototype.getValue = function () {
return this.values;
};
return ListValue;
}());
exports["default"] = ListValue;