UNPKG

1 kBJavaScriptView Raw
1"use strict";
2var __assign = (this && this.__assign) || function () {
3 __assign = Object.assign || function(t) {
4 for (var s, i = 1, n = arguments.length; i < n; i++) {
5 s = arguments[i];
6 for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7 t[p] = s[p];
8 }
9 return t;
10 };
11 return __assign.apply(this, arguments);
12};
13Object.defineProperty(exports, "__esModule", { value: true });
14exports.OneToMany = void 0;
15var type_graphql_1 = require("type-graphql");
16var typeorm_1 = require("typeorm");
17var utils_1 = require("../utils");
18function OneToMany(parentType, joinFunc, options) {
19 if (options === void 0) { options = {}; }
20 var factories = [
21 type_graphql_1.Field(parentType, __assign({ nullable: true }, options)),
22 typeorm_1.OneToMany(parentType, joinFunc)
23 ];
24 return utils_1.composeMethodDecorators.apply(void 0, factories);
25}
26exports.OneToMany = OneToMany;
27//# sourceMappingURL=OneToMany.js.map
\No newline at end of file