t-graphql
Version:
typed GraphQL - end-to-end type-safe GraphQL for TypeScript. Think tRPC, but GraphQL
15 lines • 430 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.VariableInput = void 0;
exports.variable = variable;
var VariableInput = /** @class */ (function () {
function VariableInput(name) {
this.name = name;
}
return VariableInput;
}());
exports.VariableInput = VariableInput;
function variable(name) {
return new VariableInput(name);
}
//# sourceMappingURL=VariableInput.js.map
;