@things-factory/geography 4.3.671 → 4.3.672

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist-server/controllers/index.js +1 -0
  2. package/dist-server/controllers/index.js.map +1 -0
  3. package/dist-server/index.js +21 -0
  4. package/dist-server/index.js.map +1 -0
  5. package/dist-server/middlewares/index.js +8 -0
  6. package/dist-server/middlewares/index.js.map +1 -0
  7. package/dist-server/migrations/index.js +12 -0
  8. package/dist-server/migrations/index.js.map +1 -0
  9. package/dist-server/routes.js +25 -0
  10. package/dist-server/routes.js.map +1 -0
  11. package/dist-server/service/geo-area/geo-area-mutation.js +119 -0
  12. package/dist-server/service/geo-area/geo-area-mutation.js.map +1 -0
  13. package/dist-server/service/geo-area/geo-area-query.js +126 -0
  14. package/dist-server/service/geo-area/geo-area-query.js.map +1 -0
  15. package/dist-server/service/geo-area/geo-area-type.js +113 -0
  16. package/dist-server/service/geo-area/geo-area-type.js.map +1 -0
  17. package/dist-server/service/geo-area/geo-area.js +108 -0
  18. package/dist-server/service/geo-area/geo-area.js.map +1 -0
  19. package/dist-server/service/geo-area/index.js +9 -0
  20. package/dist-server/service/geo-area/index.js.map +1 -0
  21. package/dist-server/service/geo-city/geo-city-mutation.js +119 -0
  22. package/dist-server/service/geo-city/geo-city-mutation.js.map +1 -0
  23. package/dist-server/service/geo-city/geo-city-query.js +97 -0
  24. package/dist-server/service/geo-city/geo-city-query.js.map +1 -0
  25. package/dist-server/service/geo-city/geo-city-type.js +81 -0
  26. package/dist-server/service/geo-city/geo-city-type.js.map +1 -0
  27. package/dist-server/service/geo-city/geo-city.js +104 -0
  28. package/dist-server/service/geo-city/geo-city.js.map +1 -0
  29. package/dist-server/service/geo-city/index.js +9 -0
  30. package/dist-server/service/geo-city/index.js.map +1 -0
  31. package/dist-server/service/geo-continent/geo-continent-mutation.js +119 -0
  32. package/dist-server/service/geo-continent/geo-continent-mutation.js.map +1 -0
  33. package/dist-server/service/geo-continent/geo-continent-query.js +75 -0
  34. package/dist-server/service/geo-continent/geo-continent-query.js.map +1 -0
  35. package/dist-server/service/geo-continent/geo-continent-type.js +65 -0
  36. package/dist-server/service/geo-continent/geo-continent-type.js.map +1 -0
  37. package/dist-server/service/geo-continent/geo-continent.js +74 -0
  38. package/dist-server/service/geo-continent/geo-continent.js.map +1 -0
  39. package/dist-server/service/geo-continent/index.js +9 -0
  40. package/dist-server/service/geo-continent/index.js.map +1 -0
  41. package/dist-server/service/geo-country/geo-country-mutation.js +119 -0
  42. package/dist-server/service/geo-country/geo-country-mutation.js.map +1 -0
  43. package/dist-server/service/geo-country/geo-country-query.js +112 -0
  44. package/dist-server/service/geo-country/geo-country-query.js.map +1 -0
  45. package/dist-server/service/geo-country/geo-country-type.js +77 -0
  46. package/dist-server/service/geo-country/geo-country-type.js.map +1 -0
  47. package/dist-server/service/geo-country/geo-country.js +96 -0
  48. package/dist-server/service/geo-country/geo-country.js.map +1 -0
  49. package/dist-server/service/geo-country/index.js +9 -0
  50. package/dist-server/service/geo-country/index.js.map +1 -0
  51. package/dist-server/service/geo-state/geo-state-mutation.js +119 -0
  52. package/dist-server/service/geo-state/geo-state-mutation.js.map +1 -0
  53. package/dist-server/service/geo-state/geo-state-query.js +86 -0
  54. package/dist-server/service/geo-state/geo-state-query.js.map +1 -0
  55. package/dist-server/service/geo-state/geo-state-type.js +81 -0
  56. package/dist-server/service/geo-state/geo-state-type.js.map +1 -0
  57. package/dist-server/service/geo-state/geo-state.js +94 -0
  58. package/dist-server/service/geo-state/geo-state.js.map +1 -0
  59. package/dist-server/service/geo-state/index.js +9 -0
  60. package/dist-server/service/geo-state/index.js.map +1 -0
  61. package/dist-server/service/index.js +48 -0
  62. package/dist-server/service/index.js.map +1 -0
  63. package/package.json +4 -4
@@ -0,0 +1,119 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.GeoCityMutation = void 0;
16
+ const type_graphql_1 = require("type-graphql");
17
+ const typeorm_1 = require("typeorm");
18
+ const geo_city_1 = require("./geo-city");
19
+ const geo_city_type_1 = require("./geo-city-type");
20
+ let GeoCityMutation = class GeoCityMutation {
21
+ async createGeoCity(geoCity, context) {
22
+ const { user, tx } = context.state;
23
+ return await tx.getRepository(geo_city_1.GeoCity).save(Object.assign(Object.assign({}, geoCity), { creator: user, updater: user }));
24
+ }
25
+ async updateGeoCity(id, patch, context) {
26
+ const { user, tx } = context.state;
27
+ const repository = tx.getRepository(geo_city_1.GeoCity);
28
+ const geoCity = await repository.findOne({
29
+ where: { id }
30
+ });
31
+ return await repository.save(Object.assign(Object.assign(Object.assign({}, geoCity), patch), { updater: user }));
32
+ }
33
+ async updateMultipleGeoCity(patches, context) {
34
+ const { user, tx } = context.state;
35
+ let results = [];
36
+ const _createRecords = patches.filter((patch) => patch.cuFlag.toUpperCase() === '+');
37
+ const _updateRecords = patches.filter((patch) => patch.cuFlag.toUpperCase() === 'M');
38
+ const geoCityRepo = tx.getRepository(geo_city_1.GeoCity);
39
+ if (_createRecords.length > 0) {
40
+ for (let i = 0; i < _createRecords.length; i++) {
41
+ const newRecord = _createRecords[i];
42
+ const result = await geoCityRepo.save(Object.assign(Object.assign({}, newRecord), { creator: user, updater: user }));
43
+ results.push(Object.assign(Object.assign({}, result), { cuFlag: '+' }));
44
+ }
45
+ }
46
+ if (_updateRecords.length > 0) {
47
+ for (let i = 0; i < _updateRecords.length; i++) {
48
+ const newRecord = _updateRecords[i];
49
+ const geoCity = await geoCityRepo.findOne(newRecord.id);
50
+ const result = await geoCityRepo.save(Object.assign(Object.assign(Object.assign({}, geoCity), newRecord), { updater: user }));
51
+ results.push(Object.assign(Object.assign({}, result), { cuFlag: 'M' }));
52
+ }
53
+ }
54
+ return results;
55
+ }
56
+ async deleteGeoCity(id, context) {
57
+ const { tx } = context.state;
58
+ await tx.getRepository(geo_city_1.GeoCity).delete({ id });
59
+ return true;
60
+ }
61
+ async deleteGeoCities(ids, context) {
62
+ const { tx } = context.state;
63
+ await tx.getRepository(geo_city_1.GeoCity).delete({
64
+ id: (0, typeorm_1.In)(ids)
65
+ });
66
+ return true;
67
+ }
68
+ };
69
+ __decorate([
70
+ (0, type_graphql_1.Directive)('@transaction'),
71
+ (0, type_graphql_1.Mutation)(returns => geo_city_1.GeoCity, { description: 'To create new GeoCity' }),
72
+ __param(0, (0, type_graphql_1.Arg)('geoCity')),
73
+ __param(1, (0, type_graphql_1.Ctx)()),
74
+ __metadata("design:type", Function),
75
+ __metadata("design:paramtypes", [geo_city_type_1.NewGeoCity, Object]),
76
+ __metadata("design:returntype", Promise)
77
+ ], GeoCityMutation.prototype, "createGeoCity", null);
78
+ __decorate([
79
+ (0, type_graphql_1.Directive)('@transaction'),
80
+ (0, type_graphql_1.Mutation)(returns => geo_city_1.GeoCity, { description: 'To modify GeoCity information' }),
81
+ __param(0, (0, type_graphql_1.Arg)('id')),
82
+ __param(1, (0, type_graphql_1.Arg)('patch')),
83
+ __param(2, (0, type_graphql_1.Ctx)()),
84
+ __metadata("design:type", Function),
85
+ __metadata("design:paramtypes", [String, geo_city_type_1.GeoCityPatch, Object]),
86
+ __metadata("design:returntype", Promise)
87
+ ], GeoCityMutation.prototype, "updateGeoCity", null);
88
+ __decorate([
89
+ (0, type_graphql_1.Directive)('@transaction'),
90
+ (0, type_graphql_1.Mutation)(returns => [geo_city_1.GeoCity], { description: "To modify multiple GeoCities' information" }),
91
+ __param(0, (0, type_graphql_1.Arg)('patches', type => [geo_city_type_1.GeoCityPatch])),
92
+ __param(1, (0, type_graphql_1.Ctx)()),
93
+ __metadata("design:type", Function),
94
+ __metadata("design:paramtypes", [Array, Object]),
95
+ __metadata("design:returntype", Promise)
96
+ ], GeoCityMutation.prototype, "updateMultipleGeoCity", null);
97
+ __decorate([
98
+ (0, type_graphql_1.Directive)('@transaction'),
99
+ (0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete GeoCity' }),
100
+ __param(0, (0, type_graphql_1.Arg)('id')),
101
+ __param(1, (0, type_graphql_1.Ctx)()),
102
+ __metadata("design:type", Function),
103
+ __metadata("design:paramtypes", [String, Object]),
104
+ __metadata("design:returntype", Promise)
105
+ ], GeoCityMutation.prototype, "deleteGeoCity", null);
106
+ __decorate([
107
+ (0, type_graphql_1.Directive)('@transaction'),
108
+ (0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete multiple geoCitys' }),
109
+ __param(0, (0, type_graphql_1.Arg)('ids', type => [String])),
110
+ __param(1, (0, type_graphql_1.Ctx)()),
111
+ __metadata("design:type", Function),
112
+ __metadata("design:paramtypes", [Array, Object]),
113
+ __metadata("design:returntype", Promise)
114
+ ], GeoCityMutation.prototype, "deleteGeoCities", null);
115
+ GeoCityMutation = __decorate([
116
+ (0, type_graphql_1.Resolver)(geo_city_1.GeoCity)
117
+ ], GeoCityMutation);
118
+ exports.GeoCityMutation = GeoCityMutation;
119
+ //# sourceMappingURL=geo-city-mutation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geo-city-mutation.js","sourceRoot":"","sources":["../../../server/service/geo-city/geo-city-mutation.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,97 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ var _a;
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.GeoCityQuery = void 0;
17
+ const auth_base_1 = require("@things-factory/auth-base");
18
+ const shell_1 = require("@things-factory/shell");
19
+ const type_graphql_1 = require("type-graphql");
20
+ const typeorm_1 = require("typeorm");
21
+ const geo_country_1 = require("../geo-country/geo-country");
22
+ const geo_state_1 = require("../geo-state/geo-state");
23
+ const geo_city_1 = require("./geo-city");
24
+ const geo_city_type_1 = require("./geo-city-type");
25
+ let GeoCityQuery = class GeoCityQuery {
26
+ async geoCity(id, context) {
27
+ return await (0, typeorm_1.getRepository)(geo_city_1.GeoCity).findOne({
28
+ where: { id }
29
+ });
30
+ }
31
+ async geoCities(params, context) {
32
+ const convertedParams = (0, shell_1.convertListParams)(params);
33
+ const [items, total] = await (0, typeorm_1.getRepository)(geo_city_1.GeoCity).findAndCount(convertedParams);
34
+ return { items, total };
35
+ }
36
+ async geoCountry(geoCity) {
37
+ return await (0, typeorm_1.getRepository)(geo_country_1.GeoCountry).findOne(geoCity.geoCountryId);
38
+ }
39
+ async geoState(geoCity) {
40
+ return await (0, typeorm_1.getRepository)(geo_state_1.GeoState).findOne(geoCity.geoStateId);
41
+ }
42
+ async updater(geoCity) {
43
+ return await (0, typeorm_1.getRepository)(auth_base_1.User).findOne(geoCity.updaterId);
44
+ }
45
+ async creator(geoCity) {
46
+ return await (0, typeorm_1.getRepository)(auth_base_1.User).findOne(geoCity.creatorId);
47
+ }
48
+ };
49
+ __decorate([
50
+ (0, type_graphql_1.Query)(returns => geo_city_1.GeoCity, { description: 'To fetch a GeoCity' }),
51
+ __param(0, (0, type_graphql_1.Arg)('id')),
52
+ __param(1, (0, type_graphql_1.Ctx)()),
53
+ __metadata("design:type", Function),
54
+ __metadata("design:paramtypes", [String, Object]),
55
+ __metadata("design:returntype", Promise)
56
+ ], GeoCityQuery.prototype, "geoCity", null);
57
+ __decorate([
58
+ (0, type_graphql_1.Query)(returns => geo_city_type_1.GeoCityList, { description: 'To fetch multiple GeoCities' }),
59
+ __param(0, (0, type_graphql_1.Args)()),
60
+ __param(1, (0, type_graphql_1.Ctx)()),
61
+ __metadata("design:type", Function),
62
+ __metadata("design:paramtypes", [typeof (_a = typeof shell_1.ListParam !== "undefined" && shell_1.ListParam) === "function" ? _a : Object, Object]),
63
+ __metadata("design:returntype", Promise)
64
+ ], GeoCityQuery.prototype, "geoCities", null);
65
+ __decorate([
66
+ (0, type_graphql_1.FieldResolver)(type => geo_country_1.GeoCountry),
67
+ __param(0, (0, type_graphql_1.Root)()),
68
+ __metadata("design:type", Function),
69
+ __metadata("design:paramtypes", [geo_city_1.GeoCity]),
70
+ __metadata("design:returntype", Promise)
71
+ ], GeoCityQuery.prototype, "geoCountry", null);
72
+ __decorate([
73
+ (0, type_graphql_1.FieldResolver)(type => geo_state_1.GeoState),
74
+ __param(0, (0, type_graphql_1.Root)()),
75
+ __metadata("design:type", Function),
76
+ __metadata("design:paramtypes", [geo_city_1.GeoCity]),
77
+ __metadata("design:returntype", Promise)
78
+ ], GeoCityQuery.prototype, "geoState", null);
79
+ __decorate([
80
+ (0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
81
+ __param(0, (0, type_graphql_1.Root)()),
82
+ __metadata("design:type", Function),
83
+ __metadata("design:paramtypes", [geo_city_1.GeoCity]),
84
+ __metadata("design:returntype", Promise)
85
+ ], GeoCityQuery.prototype, "updater", null);
86
+ __decorate([
87
+ (0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
88
+ __param(0, (0, type_graphql_1.Root)()),
89
+ __metadata("design:type", Function),
90
+ __metadata("design:paramtypes", [geo_city_1.GeoCity]),
91
+ __metadata("design:returntype", Promise)
92
+ ], GeoCityQuery.prototype, "creator", null);
93
+ GeoCityQuery = __decorate([
94
+ (0, type_graphql_1.Resolver)(geo_city_1.GeoCity)
95
+ ], GeoCityQuery);
96
+ exports.GeoCityQuery = GeoCityQuery;
97
+ //# sourceMappingURL=geo-city-query.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geo-city-query.js","sourceRoot":"","sources":["../../../server/service/geo-city/geo-city-query.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAgD;AAChD,iDAAoE;AACpE,+CAAmF;AACnF,qCAAuC;AACvC,4DAAuD;AACvD,sDAAiD;AACjD,yCAAoC;AACpC,mDAA6C;AAGtC,IAAM,YAAY,GAAlB,MAAM,YAAY;IAEjB,AAAN,KAAK,CAAC,OAAO,CAAY,EAAU,EAAS,OAAY;QACtD,OAAO,MAAM,IAAA,uBAAa,EAAC,kBAAO,CAAC,CAAC,OAAO,CAAC;YAC1C,KAAK,EAAE,EAAE,EAAE,EAAE;SACd,CAAC,CAAA;IACJ,CAAC;IAGK,AAAN,KAAK,CAAC,SAAS,CAAS,MAAiB,EAAS,OAAY;QAC5D,MAAM,eAAe,GAAG,IAAA,yBAAiB,EAAC,MAAM,CAAC,CAAA;QACjD,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,GAAG,MAAM,IAAA,uBAAa,EAAC,kBAAO,CAAC,CAAC,YAAY,CAAC,eAAe,CAAC,CAAA;QAEjF,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAA;IACzB,CAAC;IAGK,AAAN,KAAK,CAAC,UAAU,CAAS,OAAgB;QACvC,OAAO,MAAM,IAAA,uBAAa,EAAC,wBAAU,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,CAAA;IACtE,CAAC;IAGK,AAAN,KAAK,CAAC,QAAQ,CAAS,OAAgB;QACrC,OAAO,MAAM,IAAA,uBAAa,EAAC,oBAAQ,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,CAAA;IAClE,CAAC;IAGK,AAAN,KAAK,CAAC,OAAO,CAAS,OAAgB;QACpC,OAAO,MAAM,IAAA,uBAAa,EAAC,gBAAI,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,CAAC,CAAA;IAC7D,CAAC;IAGK,AAAN,KAAK,CAAC,OAAO,CAAS,OAAgB;QACpC,OAAO,MAAM,IAAA,uBAAa,EAAC,gBAAI,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,CAAC,CAAA;IAC7D,CAAC;CACF,CAAA;AAjCO;IADL,IAAA,oBAAK,EAAC,OAAO,CAAC,EAAE,CAAC,kBAAO,EAAE,EAAE,WAAW,EAAE,oBAAoB,EAAE,CAAC;IAClD,WAAA,IAAA,kBAAG,EAAC,IAAI,CAAC,CAAA;IAAc,WAAA,IAAA,kBAAG,GAAE,CAAA;;;;2CAI1C;AAGK;IADL,IAAA,oBAAK,EAAC,OAAO,CAAC,EAAE,CAAC,2BAAW,EAAE,EAAE,WAAW,EAAE,6BAA6B,EAAE,CAAC;IAC7D,WAAA,IAAA,mBAAI,GAAE,CAAA;IAAqB,WAAA,IAAA,kBAAG,GAAE,CAAA;;yDAAjB,iBAAS,oBAAT,iBAAS;;6CAKxC;AAGK;IADL,IAAA,4BAAa,EAAC,IAAI,CAAC,EAAE,CAAC,wBAAU,CAAC;IAChB,WAAA,IAAA,mBAAI,GAAE,CAAA;;qCAAU,kBAAO;;8CAExC;AAGK;IADL,IAAA,4BAAa,EAAC,IAAI,CAAC,EAAE,CAAC,oBAAQ,CAAC;IAChB,WAAA,IAAA,mBAAI,GAAE,CAAA;;qCAAU,kBAAO;;4CAEtC;AAGK;IADL,IAAA,4BAAa,EAAC,IAAI,CAAC,EAAE,CAAC,gBAAI,CAAC;IACb,WAAA,IAAA,mBAAI,GAAE,CAAA;;qCAAU,kBAAO;;2CAErC;AAGK;IADL,IAAA,4BAAa,EAAC,IAAI,CAAC,EAAE,CAAC,gBAAI,CAAC;IACb,WAAA,IAAA,mBAAI,GAAE,CAAA;;qCAAU,kBAAO;;2CAErC;AAlCU,YAAY;IADxB,IAAA,uBAAQ,EAAC,kBAAO,CAAC;GACL,YAAY,CAmCxB;AAnCY,oCAAY"}
@@ -0,0 +1,81 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GeoCityList = exports.GeoCityPatch = exports.NewGeoCity = void 0;
13
+ const type_graphql_1 = require("type-graphql");
14
+ const geo_city_1 = require("./geo-city");
15
+ let NewGeoCity = class NewGeoCity {
16
+ };
17
+ __decorate([
18
+ (0, type_graphql_1.Field)(),
19
+ __metadata("design:type", String)
20
+ ], NewGeoCity.prototype, "name", void 0);
21
+ __decorate([
22
+ (0, type_graphql_1.Field)({ nullable: true }),
23
+ __metadata("design:type", String)
24
+ ], NewGeoCity.prototype, "description", void 0);
25
+ __decorate([
26
+ (0, type_graphql_1.Field)({ nullable: true }),
27
+ __metadata("design:type", String)
28
+ ], NewGeoCity.prototype, "latitude", void 0);
29
+ __decorate([
30
+ (0, type_graphql_1.Field)({ nullable: true }),
31
+ __metadata("design:type", String)
32
+ ], NewGeoCity.prototype, "longitude", void 0);
33
+ NewGeoCity = __decorate([
34
+ (0, type_graphql_1.InputType)()
35
+ ], NewGeoCity);
36
+ exports.NewGeoCity = NewGeoCity;
37
+ let GeoCityPatch = class GeoCityPatch {
38
+ };
39
+ __decorate([
40
+ (0, type_graphql_1.Field)(type => type_graphql_1.ID, { nullable: true }),
41
+ __metadata("design:type", String)
42
+ ], GeoCityPatch.prototype, "id", void 0);
43
+ __decorate([
44
+ (0, type_graphql_1.Field)({ nullable: true }),
45
+ __metadata("design:type", String)
46
+ ], GeoCityPatch.prototype, "name", void 0);
47
+ __decorate([
48
+ (0, type_graphql_1.Field)({ nullable: true }),
49
+ __metadata("design:type", String)
50
+ ], GeoCityPatch.prototype, "description", void 0);
51
+ __decorate([
52
+ (0, type_graphql_1.Field)({ nullable: true }),
53
+ __metadata("design:type", String)
54
+ ], GeoCityPatch.prototype, "latitude", void 0);
55
+ __decorate([
56
+ (0, type_graphql_1.Field)({ nullable: true }),
57
+ __metadata("design:type", String)
58
+ ], GeoCityPatch.prototype, "longitude", void 0);
59
+ __decorate([
60
+ (0, type_graphql_1.Field)(),
61
+ __metadata("design:type", String)
62
+ ], GeoCityPatch.prototype, "cuFlag", void 0);
63
+ GeoCityPatch = __decorate([
64
+ (0, type_graphql_1.InputType)()
65
+ ], GeoCityPatch);
66
+ exports.GeoCityPatch = GeoCityPatch;
67
+ let GeoCityList = class GeoCityList {
68
+ };
69
+ __decorate([
70
+ (0, type_graphql_1.Field)(type => [geo_city_1.GeoCity]),
71
+ __metadata("design:type", Array)
72
+ ], GeoCityList.prototype, "items", void 0);
73
+ __decorate([
74
+ (0, type_graphql_1.Field)(type => type_graphql_1.Int),
75
+ __metadata("design:type", Number)
76
+ ], GeoCityList.prototype, "total", void 0);
77
+ GeoCityList = __decorate([
78
+ (0, type_graphql_1.ObjectType)()
79
+ ], GeoCityList);
80
+ exports.GeoCityList = GeoCityList;
81
+ //# sourceMappingURL=geo-city-type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geo-city-type.js","sourceRoot":"","sources":["../../../server/service/geo-city/geo-city-type.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAoE;AACpE,yCAAoC;AAG7B,IAAM,UAAU,GAAhB,MAAM,UAAU;CAYtB,CAAA;AAXC;IAAC,IAAA,oBAAK,GAAE;;wCACI;AAEZ;IAAC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACN;AAEpB;IAAC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACT;AAEjB;IAAC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACR;AAXP,UAAU;IADtB,IAAA,wBAAS,GAAE;GACC,UAAU,CAYtB;AAZY,gCAAU;AAehB,IAAM,YAAY,GAAlB,MAAM,YAAY;CAkBxB,CAAA;AAjBC;IAAC,IAAA,oBAAK,EAAC,IAAI,CAAC,EAAE,CAAC,iBAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC3B;AAEX;IAAC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACb;AAEb;IAAC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACN;AAEpB;IAAC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACT;AAEjB;IAAC,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACR;AAElB;IAAC,IAAA,oBAAK,GAAE;;4CACM;AAjBH,YAAY;IADxB,IAAA,wBAAS,GAAE;GACC,YAAY,CAkBxB;AAlBY,oCAAY;AAqBlB,IAAM,WAAW,GAAjB,MAAM,WAAW;CAMvB,CAAA;AALC;IAAC,IAAA,oBAAK,EAAC,IAAI,CAAC,EAAE,CAAC,CAAC,kBAAO,CAAC,CAAC;;0CACT;AAEhB;IAAC,IAAA,oBAAK,EAAC,IAAI,CAAC,EAAE,CAAC,kBAAG,CAAC;;0CACN;AALF,WAAW;IADvB,IAAA,yBAAU,GAAE;GACA,WAAW,CAMvB;AANY,kCAAW"}
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var _a, _b;
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ exports.GeoCity = void 0;
14
+ const auth_base_1 = require("@things-factory/auth-base");
15
+ const type_graphql_1 = require("type-graphql");
16
+ const typeorm_1 = require("typeorm");
17
+ const geo_country_1 = require("../geo-country/geo-country");
18
+ const geo_state_1 = require("../geo-state/geo-state");
19
+ let GeoCity = class GeoCity {
20
+ };
21
+ __decorate([
22
+ (0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
23
+ (0, type_graphql_1.Field)(type => type_graphql_1.ID),
24
+ __metadata("design:type", String)
25
+ ], GeoCity.prototype, "id", void 0);
26
+ __decorate([
27
+ (0, typeorm_1.ManyToOne)(type => geo_country_1.GeoCountry),
28
+ (0, type_graphql_1.Field)(),
29
+ __metadata("design:type", geo_country_1.GeoCountry)
30
+ ], GeoCity.prototype, "geoCountry", void 0);
31
+ __decorate([
32
+ (0, typeorm_1.RelationId)((geoCity) => geoCity.geoCountry),
33
+ __metadata("design:type", String)
34
+ ], GeoCity.prototype, "geoCountryId", void 0);
35
+ __decorate([
36
+ (0, typeorm_1.ManyToOne)(type => geo_state_1.GeoState),
37
+ (0, type_graphql_1.Field)({ nullable: true }),
38
+ __metadata("design:type", geo_state_1.GeoState)
39
+ ], GeoCity.prototype, "geoState", void 0);
40
+ __decorate([
41
+ (0, typeorm_1.RelationId)((geoCity) => geoCity.geoState),
42
+ __metadata("design:type", String)
43
+ ], GeoCity.prototype, "geoStateId", void 0);
44
+ __decorate([
45
+ (0, typeorm_1.Column)(),
46
+ (0, type_graphql_1.Field)(),
47
+ __metadata("design:type", String)
48
+ ], GeoCity.prototype, "name", void 0);
49
+ __decorate([
50
+ (0, typeorm_1.Column)({
51
+ nullable: true
52
+ }),
53
+ (0, type_graphql_1.Field)({ nullable: true }),
54
+ __metadata("design:type", String)
55
+ ], GeoCity.prototype, "description", void 0);
56
+ __decorate([
57
+ (0, typeorm_1.Column)({ nullable: true }),
58
+ (0, type_graphql_1.Field)({ nullable: true }),
59
+ __metadata("design:type", String)
60
+ ], GeoCity.prototype, "latitude", void 0);
61
+ __decorate([
62
+ (0, typeorm_1.Column)({ nullable: true }),
63
+ (0, type_graphql_1.Field)({ nullable: true }),
64
+ __metadata("design:type", String)
65
+ ], GeoCity.prototype, "longitude", void 0);
66
+ __decorate([
67
+ (0, typeorm_1.CreateDateColumn)(),
68
+ (0, type_graphql_1.Field)({ nullable: true }),
69
+ __metadata("design:type", Date)
70
+ ], GeoCity.prototype, "createdAt", void 0);
71
+ __decorate([
72
+ (0, typeorm_1.UpdateDateColumn)(),
73
+ (0, type_graphql_1.Field)({ nullable: true }),
74
+ __metadata("design:type", Date)
75
+ ], GeoCity.prototype, "updatedAt", void 0);
76
+ __decorate([
77
+ (0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
78
+ nullable: true
79
+ }),
80
+ (0, type_graphql_1.Field)({ nullable: true }),
81
+ __metadata("design:type", typeof (_a = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _a : Object)
82
+ ], GeoCity.prototype, "creator", void 0);
83
+ __decorate([
84
+ (0, typeorm_1.RelationId)((geoCity) => geoCity.creator),
85
+ __metadata("design:type", String)
86
+ ], GeoCity.prototype, "creatorId", void 0);
87
+ __decorate([
88
+ (0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
89
+ nullable: true
90
+ }),
91
+ (0, type_graphql_1.Field)({ nullable: true }),
92
+ __metadata("design:type", typeof (_b = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _b : Object)
93
+ ], GeoCity.prototype, "updater", void 0);
94
+ __decorate([
95
+ (0, typeorm_1.RelationId)((geoCity) => geoCity.creator),
96
+ __metadata("design:type", String)
97
+ ], GeoCity.prototype, "updaterId", void 0);
98
+ GeoCity = __decorate([
99
+ (0, typeorm_1.Entity)(),
100
+ (0, typeorm_1.Index)('ix_geo_city_0', (geoCity) => [geoCity.geoCountry, geoCity.name, geoCity.geoState], { unique: true }),
101
+ (0, type_graphql_1.ObjectType)({ description: 'Entity for GeoCity' })
102
+ ], GeoCity);
103
+ exports.GeoCity = GeoCity;
104
+ //# sourceMappingURL=geo-city.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geo-city.js","sourceRoot":"","sources":["../../../server/service/geo-city/geo-city.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAAgD;AAChD,+CAAoD;AACpD,qCASgB;AAChB,4DAAuD;AACvD,sDAAiD;AAK1C,IAAM,OAAO,GAAb,MAAM,OAAO;CA8DnB,CAAA;AA7DC;IAAC,IAAA,gCAAsB,EAAC,MAAM,CAAC;IAC9B,IAAA,oBAAK,EAAC,IAAI,CAAC,EAAE,CAAC,iBAAE,CAAC;;mCACC;AAEnB;IAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,wBAAU,CAAC;IAC7B,IAAA,oBAAK,GAAE;8BACI,wBAAU;2CAAA;AAEtB;IAAC,IAAA,oBAAU,EAAC,CAAC,OAAgB,EAAE,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC;;6CAChC;AAErB;IAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,oBAAQ,CAAC;IAC3B,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACf,oBAAQ;yCAAA;AAEnB;IAAC,IAAA,oBAAU,EAAC,CAAC,OAAgB,EAAE,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC;;2CAChC;AAEnB;IAAC,IAAA,gBAAM,GAAE;IACR,IAAA,oBAAK,GAAE;;qCACI;AAEZ;IAAC,IAAA,gBAAM,EAAC;QACN,QAAQ,EAAE,IAAI;KACf,CAAC;IACD,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACN;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1B,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCACT;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1B,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACR;AAElB;IAAC,IAAA,0BAAgB,GAAE;IAClB,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACd,IAAI;0CAAA;AAEhB;IAAC,IAAA,0BAAgB,GAAE;IAClB,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACd,IAAI;0CAAA;AAEhB;IAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,gBAAI,EAAE;QACvB,QAAQ,EAAE,IAAI;KACf,CAAC;IACD,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;kDAChB,gBAAI,oBAAJ,gBAAI;wCAAA;AAEd;IAAC,IAAA,oBAAU,EAAC,CAAC,OAAgB,EAAE,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC;;0CAChC;AAElB;IAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,CAAC,gBAAI,EAAE;QACvB,QAAQ,EAAE,IAAI;KACf,CAAC;IACD,IAAA,oBAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;kDAChB,gBAAI,oBAAJ,gBAAI;wCAAA;AAEd;IAAC,IAAA,oBAAU,EAAC,CAAC,OAAgB,EAAE,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC;;0CAChC;AA7DP,OAAO;IAHnB,IAAA,gBAAM,GAAE;IACR,IAAA,eAAK,EAAC,eAAe,EAAE,CAAC,OAAgB,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IACpH,IAAA,yBAAU,EAAC,EAAE,WAAW,EAAE,oBAAoB,EAAE,CAAC;GACrC,OAAO,CA8DnB;AA9DY,0BAAO"}
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.resolvers = exports.entities = void 0;
4
+ const geo_city_1 = require("./geo-city");
5
+ const geo_city_query_1 = require("./geo-city-query");
6
+ const geo_city_mutation_1 = require("./geo-city-mutation");
7
+ exports.entities = [geo_city_1.GeoCity];
8
+ exports.resolvers = [geo_city_query_1.GeoCityQuery, geo_city_mutation_1.GeoCityMutation];
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../server/service/geo-city/index.ts"],"names":[],"mappings":";;;AAAA,yCAAoC;AACpC,qDAA+C;AAC/C,2DAAqD;AAExC,QAAA,QAAQ,GAAG,CAAC,kBAAO,CAAC,CAAA;AACpB,QAAA,SAAS,GAAG,CAAC,6BAAY,EAAE,mCAAe,CAAC,CAAA"}
@@ -0,0 +1,119 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.GeoContinentMutation = void 0;
16
+ const type_graphql_1 = require("type-graphql");
17
+ const typeorm_1 = require("typeorm");
18
+ const geo_continent_1 = require("./geo-continent");
19
+ const geo_continent_type_1 = require("./geo-continent-type");
20
+ let GeoContinentMutation = class GeoContinentMutation {
21
+ async createGeoContinent(geoContinent, context) {
22
+ const { user, tx } = context.state;
23
+ return await tx.getRepository(geo_continent_1.GeoContinent).save(Object.assign(Object.assign({}, geoContinent), { creator: user, updater: user }));
24
+ }
25
+ async updateGeoContinent(id, patch, context) {
26
+ const { user, tx } = context.state;
27
+ const repository = tx.getRepository(geo_continent_1.GeoContinent);
28
+ const geoContinent = await repository.findOne({
29
+ where: { id }
30
+ });
31
+ return await repository.save(Object.assign(Object.assign(Object.assign({}, geoContinent), patch), { updater: user }));
32
+ }
33
+ async updateMultipleGeoContinent(patches, context) {
34
+ const { user, tx } = context.state;
35
+ let results = [];
36
+ const _createRecords = patches.filter((patch) => patch.cuFlag.toUpperCase() === '+');
37
+ const _updateRecords = patches.filter((patch) => patch.cuFlag.toUpperCase() === 'M');
38
+ const geoContinentRepo = tx.getRepository(geo_continent_1.GeoContinent);
39
+ if (_createRecords.length > 0) {
40
+ for (let i = 0; i < _createRecords.length; i++) {
41
+ const newRecord = _createRecords[i];
42
+ const result = await geoContinentRepo.save(Object.assign(Object.assign({}, newRecord), { creator: user, updater: user }));
43
+ results.push(Object.assign(Object.assign({}, result), { cuFlag: '+' }));
44
+ }
45
+ }
46
+ if (_updateRecords.length > 0) {
47
+ for (let i = 0; i < _updateRecords.length; i++) {
48
+ const newRecord = _updateRecords[i];
49
+ const geoContinent = await geoContinentRepo.findOne(newRecord.id);
50
+ const result = await geoContinentRepo.save(Object.assign(Object.assign(Object.assign({}, geoContinent), newRecord), { updater: user }));
51
+ results.push(Object.assign(Object.assign({}, result), { cuFlag: 'M' }));
52
+ }
53
+ }
54
+ return results;
55
+ }
56
+ async deleteGeoContinent(id, context) {
57
+ const { tx } = context.state;
58
+ await tx.getRepository(geo_continent_1.GeoContinent).delete({ id });
59
+ return true;
60
+ }
61
+ async deleteGeoContinents(ids, context) {
62
+ const { tx } = context.state;
63
+ await tx.getRepository(geo_continent_1.GeoContinent).delete({
64
+ id: (0, typeorm_1.In)(ids)
65
+ });
66
+ return true;
67
+ }
68
+ };
69
+ __decorate([
70
+ (0, type_graphql_1.Directive)('@transaction'),
71
+ (0, type_graphql_1.Mutation)(returns => geo_continent_1.GeoContinent, { description: 'To create new GeoContinent' }),
72
+ __param(0, (0, type_graphql_1.Arg)('geoContinent')),
73
+ __param(1, (0, type_graphql_1.Ctx)()),
74
+ __metadata("design:type", Function),
75
+ __metadata("design:paramtypes", [geo_continent_type_1.NewGeoContinent, Object]),
76
+ __metadata("design:returntype", Promise)
77
+ ], GeoContinentMutation.prototype, "createGeoContinent", null);
78
+ __decorate([
79
+ (0, type_graphql_1.Directive)('@transaction'),
80
+ (0, type_graphql_1.Mutation)(returns => geo_continent_1.GeoContinent, { description: 'To modify GeoContinent information' }),
81
+ __param(0, (0, type_graphql_1.Arg)('id')),
82
+ __param(1, (0, type_graphql_1.Arg)('patch')),
83
+ __param(2, (0, type_graphql_1.Ctx)()),
84
+ __metadata("design:type", Function),
85
+ __metadata("design:paramtypes", [String, geo_continent_type_1.GeoContinentPatch, Object]),
86
+ __metadata("design:returntype", Promise)
87
+ ], GeoContinentMutation.prototype, "updateGeoContinent", null);
88
+ __decorate([
89
+ (0, type_graphql_1.Directive)('@transaction'),
90
+ (0, type_graphql_1.Mutation)(returns => [geo_continent_1.GeoContinent], { description: "To modify multiple GeoContinents' information" }),
91
+ __param(0, (0, type_graphql_1.Arg)('patches', type => [geo_continent_type_1.GeoContinentPatch])),
92
+ __param(1, (0, type_graphql_1.Ctx)()),
93
+ __metadata("design:type", Function),
94
+ __metadata("design:paramtypes", [Array, Object]),
95
+ __metadata("design:returntype", Promise)
96
+ ], GeoContinentMutation.prototype, "updateMultipleGeoContinent", null);
97
+ __decorate([
98
+ (0, type_graphql_1.Directive)('@transaction'),
99
+ (0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete GeoContinent' }),
100
+ __param(0, (0, type_graphql_1.Arg)('id')),
101
+ __param(1, (0, type_graphql_1.Ctx)()),
102
+ __metadata("design:type", Function),
103
+ __metadata("design:paramtypes", [String, Object]),
104
+ __metadata("design:returntype", Promise)
105
+ ], GeoContinentMutation.prototype, "deleteGeoContinent", null);
106
+ __decorate([
107
+ (0, type_graphql_1.Directive)('@transaction'),
108
+ (0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete multiple geoContinents' }),
109
+ __param(0, (0, type_graphql_1.Arg)('ids', type => [String])),
110
+ __param(1, (0, type_graphql_1.Ctx)()),
111
+ __metadata("design:type", Function),
112
+ __metadata("design:paramtypes", [Array, Object]),
113
+ __metadata("design:returntype", Promise)
114
+ ], GeoContinentMutation.prototype, "deleteGeoContinents", null);
115
+ GeoContinentMutation = __decorate([
116
+ (0, type_graphql_1.Resolver)(geo_continent_1.GeoContinent)
117
+ ], GeoContinentMutation);
118
+ exports.GeoContinentMutation = GeoContinentMutation;
119
+ //# sourceMappingURL=geo-continent-mutation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geo-continent-mutation.js","sourceRoot":"","sources":["../../../server/service/geo-continent/geo-continent-mutation.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ var _a;
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.GeoContinentQuery = void 0;
17
+ const auth_base_1 = require("@things-factory/auth-base");
18
+ const shell_1 = require("@things-factory/shell");
19
+ const type_graphql_1 = require("type-graphql");
20
+ const typeorm_1 = require("typeorm");
21
+ const geo_continent_1 = require("./geo-continent");
22
+ const geo_continent_type_1 = require("./geo-continent-type");
23
+ let GeoContinentQuery = class GeoContinentQuery {
24
+ async geoContinent(id, context) {
25
+ return await (0, typeorm_1.getRepository)(geo_continent_1.GeoContinent).findOne({
26
+ where: { id }
27
+ });
28
+ }
29
+ async geoContinents(params, context) {
30
+ const convertedParams = (0, shell_1.convertListParams)(params);
31
+ const [items, total] = await (0, typeorm_1.getRepository)(geo_continent_1.GeoContinent).findAndCount(convertedParams);
32
+ return { items, total };
33
+ }
34
+ async updater(geoContinent) {
35
+ return await (0, typeorm_1.getRepository)(auth_base_1.User).findOne(geoContinent.updaterId);
36
+ }
37
+ async creator(geoContinent) {
38
+ return await (0, typeorm_1.getRepository)(auth_base_1.User).findOne(geoContinent.creatorId);
39
+ }
40
+ };
41
+ __decorate([
42
+ (0, type_graphql_1.Query)(returns => geo_continent_1.GeoContinent, { description: 'To fetch a GeoContinent' }),
43
+ __param(0, (0, type_graphql_1.Arg)('id')),
44
+ __param(1, (0, type_graphql_1.Ctx)()),
45
+ __metadata("design:type", Function),
46
+ __metadata("design:paramtypes", [String, Object]),
47
+ __metadata("design:returntype", Promise)
48
+ ], GeoContinentQuery.prototype, "geoContinent", null);
49
+ __decorate([
50
+ (0, type_graphql_1.Query)(returns => geo_continent_type_1.GeoContinentList, { description: 'To fetch multiple GeoContinents' }),
51
+ __param(0, (0, type_graphql_1.Args)()),
52
+ __param(1, (0, type_graphql_1.Ctx)()),
53
+ __metadata("design:type", Function),
54
+ __metadata("design:paramtypes", [typeof (_a = typeof shell_1.ListParam !== "undefined" && shell_1.ListParam) === "function" ? _a : Object, Object]),
55
+ __metadata("design:returntype", Promise)
56
+ ], GeoContinentQuery.prototype, "geoContinents", null);
57
+ __decorate([
58
+ (0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
59
+ __param(0, (0, type_graphql_1.Root)()),
60
+ __metadata("design:type", Function),
61
+ __metadata("design:paramtypes", [geo_continent_1.GeoContinent]),
62
+ __metadata("design:returntype", Promise)
63
+ ], GeoContinentQuery.prototype, "updater", null);
64
+ __decorate([
65
+ (0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
66
+ __param(0, (0, type_graphql_1.Root)()),
67
+ __metadata("design:type", Function),
68
+ __metadata("design:paramtypes", [geo_continent_1.GeoContinent]),
69
+ __metadata("design:returntype", Promise)
70
+ ], GeoContinentQuery.prototype, "creator", null);
71
+ GeoContinentQuery = __decorate([
72
+ (0, type_graphql_1.Resolver)(geo_continent_1.GeoContinent)
73
+ ], GeoContinentQuery);
74
+ exports.GeoContinentQuery = GeoContinentQuery;
75
+ //# sourceMappingURL=geo-continent-query.js.map