@ultipa-graph/ultipa-driver 5.1.5-s5.2 → 6.0.4

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 (260) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +65 -0
  3. package/dist/client.d.ts +196 -0
  4. package/dist/client.js +394 -0
  5. package/dist/config.d.ts +65 -0
  6. package/dist/config.js +135 -0
  7. package/dist/connection.d.ts +30 -0
  8. package/dist/connection.js +190 -0
  9. package/dist/errors.d.ts +99 -0
  10. package/dist/errors.js +237 -0
  11. package/dist/index.d.ts +14 -5
  12. package/dist/index.js +88 -39
  13. package/dist/printers.d.ts +33 -0
  14. package/dist/printers.js +312 -0
  15. package/dist/proto/gqldb.proto +689 -0
  16. package/dist/response.d.ts +256 -0
  17. package/dist/response.js +723 -0
  18. package/dist/services/admin-service.d.ts +44 -0
  19. package/dist/services/admin-service.js +168 -0
  20. package/dist/services/bulk-import-service.d.ts +35 -0
  21. package/dist/services/bulk-import-service.js +105 -0
  22. package/dist/services/converters.d.ts +57 -0
  23. package/dist/services/converters.js +254 -0
  24. package/dist/services/data-service.d.ts +44 -0
  25. package/dist/services/data-service.js +206 -0
  26. package/dist/services/graph-service.d.ts +32 -0
  27. package/dist/services/graph-service.js +127 -0
  28. package/dist/services/health-service.d.ts +50 -0
  29. package/dist/services/health-service.js +78 -0
  30. package/dist/services/index.d.ts +13 -0
  31. package/dist/services/index.js +30 -0
  32. package/dist/services/query-service.d.ts +39 -0
  33. package/dist/services/query-service.js +112 -0
  34. package/dist/services/service-context.d.ts +39 -0
  35. package/dist/services/service-context.js +73 -0
  36. package/dist/services/session-service.d.ts +24 -0
  37. package/dist/services/session-service.js +66 -0
  38. package/dist/services/transaction-service.d.ts +33 -0
  39. package/dist/services/transaction-service.js +100 -0
  40. package/dist/services.d.ts +28 -0
  41. package/dist/services.js +122 -0
  42. package/dist/session.d.ts +45 -0
  43. package/dist/session.js +75 -0
  44. package/dist/transaction.d.ts +42 -0
  45. package/dist/transaction.js +89 -0
  46. package/dist/types/bulk_import.d.ts +53 -0
  47. package/dist/types/bulk_import.js +6 -0
  48. package/dist/types/data_types.d.ts +116 -0
  49. package/dist/types/data_types.js +122 -0
  50. package/dist/types/enums.d.ts +59 -0
  51. package/dist/types/enums.js +67 -0
  52. package/dist/types/graph_models.d.ts +54 -0
  53. package/dist/types/graph_models.js +6 -0
  54. package/dist/types/index.d.ts +11 -5
  55. package/dist/types/index.js +36 -37
  56. package/dist/types/metadata.d.ts +107 -0
  57. package/dist/types/metadata.js +6 -0
  58. package/dist/types/schema.d.ts +31 -0
  59. package/dist/types/schema.js +6 -0
  60. package/dist/types/typed_value.d.ts +25 -0
  61. package/dist/types/typed_value.js +1176 -0
  62. package/dist/types/wrappers.d.ts +23 -0
  63. package/dist/types/wrappers.js +39 -0
  64. package/dist/types.d.ts +7 -0
  65. package/dist/types.js +24 -0
  66. package/package.json +50 -63
  67. package/dist/connection/connection.final.d.ts +0 -14
  68. package/dist/connection/connection.final.js +0 -94
  69. package/dist/connection/connection.final.js.map +0 -1
  70. package/dist/connection/connection.pool.d.ts +0 -21
  71. package/dist/connection/connection.pool.js +0 -103
  72. package/dist/connection/connection.pool.js.map +0 -1
  73. package/dist/connection/extra/algos/algo.extra.d.ts +0 -34
  74. package/dist/connection/extra/algos/algo.extra.js +0 -69
  75. package/dist/connection/extra/algos/algo.extra.js.map +0 -1
  76. package/dist/connection/extra/algos/algo.utils.d.ts +0 -3
  77. package/dist/connection/extra/algos/algo.utils.js +0 -54
  78. package/dist/connection/extra/algos/algo.utils.js.map +0 -1
  79. package/dist/connection/extra/algos/community.d.ts +0 -27
  80. package/dist/connection/extra/algos/community.js +0 -76
  81. package/dist/connection/extra/algos/community.js.map +0 -1
  82. package/dist/connection/extra/algos/degrees.d.ts +0 -10
  83. package/dist/connection/extra/algos/degrees.js +0 -24
  84. package/dist/connection/extra/algos/degrees.js.map +0 -1
  85. package/dist/connection/extra/algos/embedding.d.ts +0 -13
  86. package/dist/connection/extra/algos/embedding.js +0 -33
  87. package/dist/connection/extra/algos/embedding.js.map +0 -1
  88. package/dist/connection/extra/algos/index.d.ts +0 -5
  89. package/dist/connection/extra/algos/index.js +0 -14
  90. package/dist/connection/extra/algos/index.js.map +0 -1
  91. package/dist/connection/extra/base.extra.d.ts +0 -18
  92. package/dist/connection/extra/base.extra.js +0 -111
  93. package/dist/connection/extra/base.extra.js.map +0 -1
  94. package/dist/connection/extra/batch.insert.extra.d.ts +0 -58
  95. package/dist/connection/extra/batch.insert.extra.js +0 -354
  96. package/dist/connection/extra/batch.insert.extra.js.map +0 -1
  97. package/dist/connection/extra/connection.base.d.ts +0 -112
  98. package/dist/connection/extra/connection.base.js +0 -530
  99. package/dist/connection/extra/connection.base.js.map +0 -1
  100. package/dist/connection/extra/connection.d.ts +0 -17
  101. package/dist/connection/extra/connection.js +0 -44
  102. package/dist/connection/extra/connection.js.map +0 -1
  103. package/dist/connection/extra/graph.extra.d.ts +0 -54
  104. package/dist/connection/extra/graph.extra.js +0 -151
  105. package/dist/connection/extra/graph.extra.js.map +0 -1
  106. package/dist/connection/extra/hdc.extra.d.ts +0 -89
  107. package/dist/connection/extra/hdc.extra.js +0 -322
  108. package/dist/connection/extra/hdc.extra.js.map +0 -1
  109. package/dist/connection/extra/index.extra.d.ts +0 -102
  110. package/dist/connection/extra/index.extra.js +0 -210
  111. package/dist/connection/extra/index.extra.js.map +0 -1
  112. package/dist/connection/extra/job.extra.d.ts +0 -32
  113. package/dist/connection/extra/job.extra.js +0 -122
  114. package/dist/connection/extra/job.extra.js.map +0 -1
  115. package/dist/connection/extra/meta.extra.d.ts +0 -36
  116. package/dist/connection/extra/meta.extra.js +0 -123
  117. package/dist/connection/extra/meta.extra.js.map +0 -1
  118. package/dist/connection/extra/policy.extra.d.ts +0 -32
  119. package/dist/connection/extra/policy.extra.js +0 -114
  120. package/dist/connection/extra/policy.extra.js.map +0 -1
  121. package/dist/connection/extra/privilege.extra.d.ts +0 -8
  122. package/dist/connection/extra/privilege.extra.js +0 -20
  123. package/dist/connection/extra/privilege.extra.js.map +0 -1
  124. package/dist/connection/extra/property.extra.d.ts +0 -66
  125. package/dist/connection/extra/property.extra.js +0 -190
  126. package/dist/connection/extra/property.extra.js.map +0 -1
  127. package/dist/connection/extra/schema.extra.d.ts +0 -108
  128. package/dist/connection/extra/schema.extra.js +0 -253
  129. package/dist/connection/extra/schema.extra.js.map +0 -1
  130. package/dist/connection/extra/search.extra.d.ts +0 -12
  131. package/dist/connection/extra/search.extra.js +0 -117
  132. package/dist/connection/extra/search.extra.js.map +0 -1
  133. package/dist/connection/extra/task.extra.d.ts +0 -24
  134. package/dist/connection/extra/task.extra.js +0 -107
  135. package/dist/connection/extra/task.extra.js.map +0 -1
  136. package/dist/connection/extra/user.extra.d.ts +0 -28
  137. package/dist/connection/extra/user.extra.js +0 -91
  138. package/dist/connection/extra/user.extra.js.map +0 -1
  139. package/dist/connection/extra/user.privilege.extra.d.ts +0 -64
  140. package/dist/connection/extra/user.privilege.extra.js +0 -273
  141. package/dist/connection/extra/user.privilege.extra.js.map +0 -1
  142. package/dist/connection/index.d.ts +0 -5
  143. package/dist/connection/index.js +0 -13
  144. package/dist/connection/index.js.map +0 -1
  145. package/dist/connection/network.manager.d.ts +0 -28
  146. package/dist/connection/network.manager.js +0 -179
  147. package/dist/connection/network.manager.js.map +0 -1
  148. package/dist/index.js.map +0 -1
  149. package/dist/printers/alias.d.ts +0 -2
  150. package/dist/printers/alias.js +0 -39
  151. package/dist/printers/alias.js.map +0 -1
  152. package/dist/printers/any.d.ts +0 -2
  153. package/dist/printers/any.js +0 -63
  154. package/dist/printers/any.js.map +0 -1
  155. package/dist/printers/array.aio.d.ts +0 -3
  156. package/dist/printers/array.aio.js +0 -259
  157. package/dist/printers/array.aio.js.map +0 -1
  158. package/dist/printers/common.d.ts +0 -0
  159. package/dist/printers/common.js +0 -1
  160. package/dist/printers/common.js.map +0 -1
  161. package/dist/printers/edge.d.ts +0 -5
  162. package/dist/printers/edge.js +0 -78
  163. package/dist/printers/edge.js.map +0 -1
  164. package/dist/printers/explain.plan.d.ts +0 -2
  165. package/dist/printers/explain.plan.js +0 -46
  166. package/dist/printers/explain.plan.js.map +0 -1
  167. package/dist/printers/index.d.ts +0 -24
  168. package/dist/printers/index.js +0 -43
  169. package/dist/printers/index.js.map +0 -1
  170. package/dist/printers/node.d.ts +0 -5
  171. package/dist/printers/node.js +0 -77
  172. package/dist/printers/node.js.map +0 -1
  173. package/dist/printers/path.d.ts +0 -3
  174. package/dist/printers/path.js +0 -62
  175. package/dist/printers/path.js.map +0 -1
  176. package/dist/printers/status.d.ts +0 -3
  177. package/dist/printers/status.js +0 -68
  178. package/dist/printers/status.js.map +0 -1
  179. package/dist/printers/table.d.ts +0 -2
  180. package/dist/printers/table.js +0 -56
  181. package/dist/printers/table.js.map +0 -1
  182. package/dist/proto/tmp.js +0 -366
  183. package/dist/proto/ultipa_grpc_pb.d.ts +0 -258
  184. package/dist/proto/ultipa_grpc_pb.js +0 -366
  185. package/dist/proto/ultipa_grpc_pb.js.map +0 -1
  186. package/dist/proto/ultipa_pb.d.ts +0 -1
  187. package/dist/proto/ultipa_pb.js +0 -12119
  188. package/dist/proto/ultipa_pb.js.map +0 -1
  189. package/dist/types/index.js.map +0 -1
  190. package/dist/types/types.algos.params.d.ts +0 -545
  191. package/dist/types/types.algos.params.js +0 -16
  192. package/dist/types/types.algos.params.js.map +0 -1
  193. package/dist/types/types.d.ts +0 -1214
  194. package/dist/types/types.extra.d.ts +0 -146
  195. package/dist/types/types.extra.js +0 -27
  196. package/dist/types/types.extra.js.map +0 -1
  197. package/dist/types/types.js +0 -1606
  198. package/dist/types/types.js.map +0 -1
  199. package/dist/types/util.d.ts +0 -15
  200. package/dist/types/util.js +0 -136
  201. package/dist/types/util.js.map +0 -1
  202. package/dist/utils/common.d.ts +0 -3
  203. package/dist/utils/common.js +0 -22
  204. package/dist/utils/common.js.map +0 -1
  205. package/dist/utils/config.d.ts +0 -3
  206. package/dist/utils/config.js +0 -7
  207. package/dist/utils/config.js.map +0 -1
  208. package/dist/utils/format.d.ts +0 -45
  209. package/dist/utils/format.js +0 -879
  210. package/dist/utils/format.js.map +0 -1
  211. package/dist/utils/index.d.ts +0 -10
  212. package/dist/utils/index.js +0 -30
  213. package/dist/utils/index.js.map +0 -1
  214. package/dist/utils/params.validate.d.ts +0 -4
  215. package/dist/utils/params.validate.js +0 -14
  216. package/dist/utils/params.validate.js.map +0 -1
  217. package/dist/utils/property.d.ts +0 -24
  218. package/dist/utils/property.js +0 -203
  219. package/dist/utils/property.js.map +0 -1
  220. package/dist/utils/raft.retry.d.ts +0 -0
  221. package/dist/utils/raft.retry.js +0 -1
  222. package/dist/utils/raft.retry.js.map +0 -1
  223. package/dist/utils/serialize/commont.d.ts +0 -12
  224. package/dist/utils/serialize/commont.js +0 -46
  225. package/dist/utils/serialize/commont.js.map +0 -1
  226. package/dist/utils/serialize/deserialize.d.ts +0 -10
  227. package/dist/utils/serialize/deserialize.js +0 -288
  228. package/dist/utils/serialize/deserialize.js.map +0 -1
  229. package/dist/utils/serialize/null.d.ts +0 -32
  230. package/dist/utils/serialize/null.js +0 -178
  231. package/dist/utils/serialize/null.js.map +0 -1
  232. package/dist/utils/serialize/serialize.d.ts +0 -10
  233. package/dist/utils/serialize/serialize.js +0 -146
  234. package/dist/utils/serialize/serialize.js.map +0 -1
  235. package/dist/utils/stream.helper.d.ts +0 -10
  236. package/dist/utils/stream.helper.js +0 -71
  237. package/dist/utils/stream.helper.js.map +0 -1
  238. package/dist/utils/time.record.d.ts +0 -15
  239. package/dist/utils/time.record.js +0 -52
  240. package/dist/utils/time.record.js.map +0 -1
  241. package/dist/utils/timezone.d.ts +0 -7
  242. package/dist/utils/timezone.js +0 -21
  243. package/dist/utils/timezone.js.map +0 -1
  244. package/dist/utils/ultipa.datetime.d.ts +0 -14
  245. package/dist/utils/ultipa.datetime.js +0 -160
  246. package/dist/utils/ultipa.datetime.js.map +0 -1
  247. package/dist/utils/uql-maker.d.ts +0 -165
  248. package/dist/utils/uql-maker.js +0 -402
  249. package/dist/utils/uql-maker.js.map +0 -1
  250. package/dist/utils/uql.parse.d.ts +0 -27
  251. package/dist/utils/uql.parse.js +0 -205
  252. package/dist/utils/uql.parse.js.map +0 -1
  253. package/readme.md +0 -65
  254. package/src/proto/build.sh +0 -41
  255. package/src/proto/build_windows.sh +0 -40
  256. package/src/proto/ultipa.proto +0 -531
  257. package/src/proto/ultipa_grpc_pb.d.ts +0 -92
  258. package/src/proto/ultipa_grpc_pb.js +0 -414
  259. package/src/proto/ultipa_pb.d.ts +0 -1983
  260. package/src/proto/ultipa_pb.js +0 -14852
@@ -1,32 +0,0 @@
1
- import { ConnectionBase } from "./connection.base";
2
- import { Policy, RequestConfig, Response, PropertyPrivilege } from "../../types/types";
3
- export declare class PolicyExtra extends ConnectionBase {
4
- /**
5
- * Retrieves all policies from the instance. A policy includes system privileges, graph privileges, property privileges and other policies.
6
- */
7
- showPolicy(config?: RequestConfig): Promise<Policy[]>;
8
- /**
9
- * Retrieves a policy from the instance by its name.
10
- */
11
- getPolicy(policyName: string, config?: RequestConfig): Promise<Policy>;
12
- /**
13
- * Creates a policy in the instance.
14
- */
15
- createPolicy(policy: Policy, config?: RequestConfig): Promise<Response>;
16
- /**
17
- * Alters the system privileges, graph privileges, property privileges and policies of one existing policy in the instance by its name.
18
- */
19
- alterPolicy(policy: Policy, config?: RequestConfig): Promise<Response>;
20
- /**
21
- * Drops one policy from the instance by its name.
22
- */
23
- dropPolicy(policyName: string, config?: RequestConfig): Promise<Response>;
24
- /**
25
- * Grant user policy
26
- */
27
- grantPolicy(userName: string, graphPrivileges?: Map<string, string[]>, systemPrivileges?: string[], policies?: string[], PropertyPrivilege?: PropertyPrivilege, config?: RequestConfig): Promise<Response>;
28
- /**
29
- * Revoke user policy List
30
- */
31
- revokePolicy(userName: string, graphPrivileges?: Map<string, string[]>, systemPrivileges?: string[], policies?: string[], PropertyPrivilege?: PropertyPrivilege, config?: RequestConfig): Promise<Response>;
32
- }
@@ -1,114 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PolicyExtra = void 0;
4
- const connection_base_1 = require("./connection.base");
5
- const utils_1 = require("../../utils");
6
- const types_extra_1 = require("../../types/types.extra");
7
- const { CommandList } = utils_1.UQLMAKER;
8
- class PolicyExtra extends connection_base_1.ConnectionBase {
9
- /**
10
- * Retrieves all policies from the instance. A policy includes system privileges, graph privileges, property privileges and other policies.
11
- */
12
- async showPolicy(config) {
13
- let command = CommandList.showPolicy;
14
- let uqlMaker = new utils_1.UQLMAKER(command, config);
15
- let res = await this.uql(uqlMaker.toString(), config);
16
- return res.items[types_extra_1.ResponseTableName.POLICY]?.asPolicies();
17
- }
18
- /**
19
- * Retrieves a policy from the instance by its name.
20
- */
21
- async getPolicy(policyName, config) {
22
- let command = CommandList.getPolicy;
23
- let uqlMaker = new utils_1.UQLMAKER(command, config, policyName);
24
- let res = await this.uql(uqlMaker.toString(), config);
25
- return res.items[types_extra_1.ResponseTableName.POLICY]?.asPolicies().find(v => v.name == policyName);
26
- }
27
- /**
28
- * Creates a policy in the instance.
29
- */
30
- async createPolicy(policy, config) {
31
- let command = CommandList.createPolicy;
32
- let uqlMaker = new utils_1.UQLMAKER(command, config, [policy.name,
33
- policy?.graphPrivileges ? Object.fromEntries(policy?.graphPrivileges) : {},
34
- policy.systemPrivileges || [], policy.policies || [], policy.propertyPrivileges || {}]);
35
- return this.uql(uqlMaker.toString(), config);
36
- }
37
- /**
38
- * Alters the system privileges, graph privileges, property privileges and policies of one existing policy in the instance by its name.
39
- */
40
- async alterPolicy(policy, config) {
41
- let command = CommandList.alterPolicy;
42
- let uqlMaker = new utils_1.UQLMAKER(command, config, policy.name);
43
- let set = {};
44
- if (policy?.graphPrivileges) {
45
- set.graph_privileges =
46
- policy?.graphPrivileges ? Object.fromEntries(policy?.graphPrivileges) : {};
47
- }
48
- if (policy?.systemPrivileges) {
49
- set.system_privileges = policy.systemPrivileges;
50
- }
51
- if (policy?.policies) {
52
- set.policies = policy.policies;
53
- }
54
- if (policy?.propertyPrivileges) {
55
- set.property_privileges = policy.propertyPrivileges;
56
- }
57
- uqlMaker.addParam("set", set);
58
- return this.uql(uqlMaker.toString(), config);
59
- }
60
- /**
61
- * Drops one policy from the instance by its name.
62
- */
63
- async dropPolicy(policyName, config) {
64
- let command = CommandList.dropPolicy;
65
- let uqlMaker = new utils_1.UQLMAKER(command, config, policyName);
66
- return this.uql(uqlMaker.toString(), config);
67
- }
68
- /**
69
- * Grant user policy
70
- */
71
- async grantPolicy(userName, graphPrivileges, systemPrivileges, policies, PropertyPrivilege, config) {
72
- let command = CommandList.grantUser;
73
- let uqlMaker = new utils_1.UQLMAKER(command, config, userName);
74
- let set = {};
75
- if (graphPrivileges) {
76
- graphPrivileges ? Object.fromEntries(graphPrivileges) : {};
77
- }
78
- if (systemPrivileges) {
79
- set.system_privileges = systemPrivileges;
80
- }
81
- if (policies) {
82
- set.policies = policies;
83
- }
84
- if (PropertyPrivilege) {
85
- set.property_privileges = PropertyPrivilege;
86
- }
87
- uqlMaker.addParam("params", set);
88
- return this.uql(uqlMaker.toString(), config);
89
- }
90
- /**
91
- * Revoke user policy List
92
- */
93
- async revokePolicy(userName, graphPrivileges, systemPrivileges, policies, PropertyPrivilege, config) {
94
- let command = CommandList.revokeUser;
95
- let uqlMaker = new utils_1.UQLMAKER(command, config, userName);
96
- let set = {};
97
- if (graphPrivileges) {
98
- set.graph_privileges = graphPrivileges ? Object.fromEntries(graphPrivileges) : {};
99
- }
100
- if (systemPrivileges) {
101
- set.system_privileges = systemPrivileges;
102
- }
103
- if (policies) {
104
- set.policies = policies;
105
- }
106
- if (PropertyPrivilege) {
107
- set.property_privileges = PropertyPrivilege;
108
- }
109
- uqlMaker.addParam("params", set);
110
- return this.uql(uqlMaker.toString(), config);
111
- }
112
- }
113
- exports.PolicyExtra = PolicyExtra;
114
- //# sourceMappingURL=policy.extra.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"policy.extra.js","sourceRoot":"","sources":["../../../src/connection/extra/policy.extra.ts"],"names":[],"mappings":"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"}
@@ -1,8 +0,0 @@
1
- import { ConnectionBase } from "./connection.base";
2
- import { Privilege, RequestConfig } from "../../types/types";
3
- export declare class PrivilegeExtra extends ConnectionBase {
4
- /**
5
- * Retrieves all system privileges and graph privileges, which are actually UQL command names categorized based on their operation scope.
6
- */
7
- showPrivilege(config?: RequestConfig): Promise<Privilege[]>;
8
- }
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PrivilegeExtra = void 0;
4
- const connection_base_1 = require("./connection.base");
5
- const utils_1 = require("../../utils");
6
- const { CommandList } = utils_1.UQLMAKER;
7
- class PrivilegeExtra extends connection_base_1.ConnectionBase {
8
- /**
9
- * Retrieves all system privileges and graph privileges, which are actually UQL command names categorized based on their operation scope.
10
- */
11
- async showPrivilege(config) {
12
- let command = CommandList.showPrivilege;
13
- let uqlMaker = new utils_1.UQLMAKER(command, config);
14
- let res = await this.uql(uqlMaker.toString(), config);
15
- let result = res.items["_privilege"].asPrivileges();
16
- return result;
17
- }
18
- }
19
- exports.PrivilegeExtra = PrivilegeExtra;
20
- //# sourceMappingURL=privilege.extra.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"privilege.extra.js","sourceRoot":"","sources":["../../../src/connection/extra/privilege.extra.ts"],"names":[],"mappings":";;;AACA,uDAAkD;AAElD,uCAAuC;AAEvC,MAAM,EAAE,WAAW,EAAE,GAAG,gBAAQ,CAAA;AAEhC,MAAa,cAAe,SAAQ,gCAAc;IAC9C;;OAEG;IACH,KAAK,CAAC,aAAa,CAAC,MAAsB;QACtC,IAAI,OAAO,GAAG,WAAW,CAAC,aAAa,CAAA;QACvC,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;QAC5C,IAAI,GAAG,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAA;QACrD,IAAI,MAAM,GAAG,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,YAAY,EAAE,CAAA;QACnD,OAAO,MAAM,CAAA;IACjB,CAAC;CAEJ;AAZD,wCAYC"}
@@ -1,66 +0,0 @@
1
- import { ConnectionBase } from "./connection.base";
2
- import { AllProperties, DBType, Property, RequestConfig, Response, ResponseWithExistCheck } from "../../types/types";
3
- export declare class PropertyExtra extends ConnectionBase {
4
- /**
5
- * Loads one custom property of nodes or edges to the computing engine for query acceleration.
6
- */
7
- lte(dbType: DBType, propertyName: string, schemaName?: string, config?: RequestConfig): Promise<import("../../types/types").JobResponse>;
8
- /**
9
- * Unloads one custom property of nodes or edges from the computing engine to save the memory.
10
- */
11
- ufe(dbType: DBType, propertyName: string, schemaName?: string, config?: RequestConfig): Promise<Response>;
12
- /**
13
- * Retrieves custom properties of nodes or edges from the current graphset.if have dbType param,return List<property>.if not,return AllProperties
14
- */
15
- showProperty(dbType?: DBType, schemaName?: string, config?: RequestConfig): Promise<AllProperties>;
16
- /**
17
- * Retrieves custom properties of nodes from the current graphset.
18
- */
19
- showNodeProperty(schemaName?: string, config?: RequestConfig): Promise<Property[]>;
20
- /**
21
- * Retrieves custom properties of edges from the current graphset.
22
- */
23
- showEdgeProperty(schemaName?: string, config?: RequestConfig): Promise<Property[]>;
24
- /**
25
- * Retrieves a custom property of nodes or edges from the current graphset.
26
- * @param dbType: DBType
27
- * @param schemaName: String
28
- * @param propertyName: String
29
- * @param config: RequestConfig
30
- */
31
- getProperty(dbType: DBType, schemaName: string, propertyName: string, config?: RequestConfig): Promise<Property>;
32
- /**
33
- * Retrieves a custom property of nodes from the current graphset.
34
- */
35
- getNodeProperty(schemaName: string, propertyName: string, config?: RequestConfig): Promise<Property>;
36
- /**
37
- * Retrieves a custom property of edges from the current graphset.
38
- */
39
- getEdgeProperty(schemaName: string, propertyName: string, config?: RequestConfig): Promise<Property>;
40
- /**
41
- * Checks if a specified node or edge has a certain property
42
- * @param dbType
43
- * @param schemaName
44
- * @param propertyName
45
- * @param config
46
- * @returns
47
- * @private
48
- */
49
- private hasProperty;
50
- /**
51
- * Creates a new property for a node or edge schema in the current graphset.
52
- */
53
- createProperty(dbType: DBType, property: Property, config?: RequestConfig): Promise<Response>;
54
- /**
55
- * Creates a new property for a node or edge schema in the current graphset, handling cases where the given property name already exists by ignoring the error.
56
- */
57
- createPropertyIfNotExist(dbType: DBType, property: Property, config?: RequestConfig): Promise<ResponseWithExistCheck>;
58
- /**
59
- * Drops one custom property from the current graphset by its name and the associated schema.
60
- */
61
- dropProperty(dbType: DBType, property: Property, config?: RequestConfig): Promise<Response>;
62
- /**
63
- * Alters the name and description of one existing custom property in the current graphset by its name.
64
- */
65
- alterProperty(dbType: DBType, originProp: Property, newProp: Property, config?: RequestConfig): Promise<Response>;
66
- }
@@ -1,190 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PropertyExtra = void 0;
4
- const connection_base_1 = require("./connection.base");
5
- const types_1 = require("../../types/types");
6
- const utils_1 = require("../../utils");
7
- const { CommandList, SchemaStringWithDefault } = utils_1.UQLMAKER;
8
- class PropertyExtra extends connection_base_1.ConnectionBase {
9
- /**
10
- * Loads one custom property of nodes or edges to the computing engine for query acceleration.
11
- */
12
- async lte(dbType, propertyName, schemaName, config) {
13
- let command = dbType === types_1.DBType.DBNODE ? CommandList.lteNode : CommandList.lteEdge;
14
- let commandParams = SchemaStringWithDefault(schemaName, propertyName);
15
- let uqlMaker = new utils_1.UQLMAKER(command, config, commandParams);
16
- return this.uqlJobResponse(uqlMaker, config);
17
- }
18
- /**
19
- * Unloads one custom property of nodes or edges from the computing engine to save the memory.
20
- */
21
- async ufe(dbType, propertyName, schemaName, config) {
22
- let command = dbType === types_1.DBType.DBNODE ? CommandList.ufeNode : CommandList.ufeEdge;
23
- let commandParams = SchemaStringWithDefault(schemaName, propertyName);
24
- let uqlMaker = new utils_1.UQLMAKER(command, config, commandParams);
25
- return this.uql(uqlMaker.toString(), config);
26
- }
27
- /**
28
- * Retrieves custom properties of nodes or edges from the current graphset.if have dbType param,return List<property>.if not,return AllProperties
29
- */
30
- async showProperty(dbType, schemaName, config) {
31
- let command = CommandList.showProperty;
32
- let commandP = null;
33
- if (dbType !== undefined) {
34
- command = dbType === types_1.DBType.DBNODE
35
- ? CommandList.showNodeProperty
36
- : CommandList.showEdgeProperty;
37
- if (schemaName) {
38
- commandP = SchemaStringWithDefault(schemaName);
39
- }
40
- }
41
- let uqlMaker = new utils_1.UQLMAKER(command, config, commandP);
42
- let res = await this.uql(uqlMaker.toString(), config);
43
- let nodeProperty = res.aliases.find(a => a.name === "_nodeProperty") ? res.items["_nodeProperty"].asProperties() : [];
44
- let edgeProperty = res.aliases.find(a => a.name === "_edgeProperty") ? res.items["_edgeProperty"].asProperties() : [];
45
- return {
46
- nodeProperties: nodeProperty || [],
47
- edgeProperties: edgeProperty || [],
48
- };
49
- }
50
- /**
51
- * Retrieves custom properties of nodes from the current graphset.
52
- */
53
- async showNodeProperty(schemaName, config) {
54
- let command = CommandList.showNodeProperty;
55
- let commandP = SchemaStringWithDefault(schemaName);
56
- let uqlMaker = new utils_1.UQLMAKER(command, config, commandP);
57
- let res = await this.uql(uqlMaker.toString(), config);
58
- return res.items["_nodeProperty"].asProperties();
59
- }
60
- /**
61
- * Retrieves custom properties of edges from the current graphset.
62
- */
63
- async showEdgeProperty(schemaName, config) {
64
- let command = CommandList.showEdgeProperty;
65
- let commandP = SchemaStringWithDefault(schemaName);
66
- let uqlMaker = new utils_1.UQLMAKER(command, config, commandP);
67
- let res = await this.uql(uqlMaker.toString(), config);
68
- return res.items["_edgeProperty"].asProperties();
69
- }
70
- /**
71
- * Retrieves a custom property of nodes or edges from the current graphset.
72
- * @param dbType: DBType
73
- * @param schemaName: String
74
- * @param propertyName: String
75
- * @param config: RequestConfig
76
- */
77
- async getProperty(dbType, schemaName, propertyName, config) {
78
- let listProperty = await this.showProperty(dbType, schemaName, config);
79
- let properties = dbType === types_1.DBType.DBNODE
80
- ? listProperty.nodeProperties
81
- : listProperty.edgeProperties;
82
- let propertyItem = properties.find((property) => property.name === propertyName);
83
- // if (propertyItem == undefined) {
84
- // throw new Error(`Property ${propertyName} not found in ${DBType[dbType]} ${schemaName}`)
85
- // }
86
- return propertyItem;
87
- }
88
- /**
89
- * Retrieves a custom property of nodes from the current graphset.
90
- */
91
- async getNodeProperty(schemaName, propertyName, config) {
92
- return this.getProperty(types_1.DBType.DBNODE, schemaName, propertyName, config);
93
- }
94
- /**
95
- * Retrieves a custom property of edges from the current graphset.
96
- */
97
- async getEdgeProperty(schemaName, propertyName, config) {
98
- return this.getProperty(types_1.DBType.DBEDGE, schemaName, propertyName, config);
99
- }
100
- /**
101
- * Checks if a specified node or edge has a certain property
102
- * @param dbType
103
- * @param schemaName
104
- * @param propertyName
105
- * @param config
106
- * @returns
107
- * @private
108
- */
109
- async hasProperty(dbType, schemaName, propertyName, config) {
110
- let res;
111
- dbType === types_1.DBType.DBNODE
112
- ? res = await this.getNodeProperty(schemaName, propertyName, config)
113
- : res = await this.getEdgeProperty(schemaName, propertyName, config);
114
- return res != null;
115
- }
116
- /**
117
- * Creates a new property for a node or edge schema in the current graphset.
118
- */
119
- async createProperty(dbType, property, config) {
120
- try {
121
- let command = dbType === types_1.DBType.DBNODE
122
- ? CommandList.createNodeProperty
123
- : CommandList.createEdgeProperty;
124
- let p_type = property.type ? property.type : types_1.UltipaPropertyType.STRING;
125
- let commandParams = [
126
- SchemaStringWithDefault(property?.schema),
127
- utils_1.UQLMAKER.ForceString(property.name),
128
- utils_1.PropertyUtils.GetPropertyTypeDesc(p_type, property.subType, property.decimalExtra).toLowerCase(),
129
- property.description || "",
130
- ];
131
- let uqlMaker = new utils_1.UQLMAKER(command, config, commandParams);
132
- return this.uql(uqlMaker.toString(), config);
133
- }
134
- catch (error) {
135
- return utils_1.FormatResponse.catchUltipaUqlError(error);
136
- }
137
- }
138
- /**
139
- * Creates a new property for a node or edge schema in the current graphset, handling cases where the given property name already exists by ignoring the error.
140
- */
141
- async createPropertyIfNotExist(dbType, property, config) {
142
- let isPropertyExist = await this.hasProperty(dbType, property.schema, property.name, config);
143
- if (isPropertyExist) {
144
- return {
145
- exist: true,
146
- response: {
147
- status: utils_1.FormatResponse.successStatus(),
148
- statistics: utils_1.FormatResponse.statisticsSum(),
149
- }
150
- };
151
- }
152
- let res = await this.createProperty(dbType, property, config);
153
- return {
154
- exist: false,
155
- response: res
156
- };
157
- }
158
- /**
159
- * Drops one custom property from the current graphset by its name and the associated schema.
160
- */
161
- async dropProperty(dbType, property, config) {
162
- let command = dbType === types_1.DBType.DBNODE
163
- ? CommandList.dropNodeProperty
164
- : CommandList.dropEdgeProperty;
165
- let commandParams = SchemaStringWithDefault(property.schema, property.name);
166
- let uqlMaker = new utils_1.UQLMAKER(command, config, commandParams);
167
- return this.uql(uqlMaker.toString(), config);
168
- }
169
- /**
170
- * Alters the name and description of one existing custom property in the current graphset by its name.
171
- */
172
- async alterProperty(dbType, originProp, newProp, config) {
173
- let command = dbType === types_1.DBType.DBNODE
174
- ? CommandList.updateNodeProperty
175
- : CommandList.updateEdgeProperty;
176
- let commandParams = SchemaStringWithDefault(originProp.schema, originProp.name);
177
- let uqlMaker = new utils_1.UQLMAKER(command, config, commandParams);
178
- let set = {};
179
- if (newProp.name) {
180
- set.name = newProp.name;
181
- }
182
- if ((0, utils_1.isNotNullString)(newProp.description)) {
183
- set.description = newProp.description;
184
- }
185
- uqlMaker.addParam("set", set);
186
- return this.uql(uqlMaker.toString(), config);
187
- }
188
- }
189
- exports.PropertyExtra = PropertyExtra;
190
- //# sourceMappingURL=property.extra.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"property.extra.js","sourceRoot":"","sources":["../../../src/connection/extra/property.extra.ts"],"names":[],"mappings":";;;AAAA,uDAAmD;AACnD,6CAAyI;AACzI,uCAAuF;AAGvF,MAAM,EAAE,WAAW,EAAE,uBAAuB,EAAE,GAAG,gBAAQ,CAAC;AAC1D,MAAa,aAAc,SAAQ,gCAAc;IAC7C;;OAEG;IACH,KAAK,CAAC,GAAG,CACL,MAAc,EACd,YAAoB,EACpB,UAAmB,EACnB,MAAsB;QAEtB,IAAI,OAAO,GAAG,MAAM,KAAK,cAAM,CAAC,MAAM,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC;QACnF,IAAI,aAAa,GAAG,uBAAuB,CAAC,UAAU,EAAE,YAAY,CAAC,CAAC;QACtE,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,aAAa,CAAC,CAAC;QAC5D,OAAO,IAAI,CAAC,cAAc,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;IACjD,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,GAAG,CACL,MAAc,EACd,YAAoB,EACpB,UAAmB,EACnB,MAAsB;QAEtB,IAAI,OAAO,GAAG,MAAM,KAAK,cAAM,CAAC,MAAM,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC;QACnF,IAAI,aAAa,GAAG,uBAAuB,CAAC,UAAU,EAAE,YAAY,CAAC,CAAC;QACtE,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,aAAa,CAAC,CAAC;QAC5D,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAA;IAChD,CAAC;IACD;;OAEG;IACH,KAAK,CAAC,YAAY,CACd,MAAe,EACf,UAAmB,EACnB,MAAsB;QAEtB,IAAI,OAAO,GAAG,WAAW,CAAC,YAAY,CAAC;QACvC,IAAI,QAAQ,GAAG,IAAI,CAAC;QACpB,IAAI,MAAM,KAAK,SAAS,EAAE;YACtB,OAAO,GAAG,MAAM,KAAK,cAAM,CAAC,MAAM;gBAC9B,CAAC,CAAC,WAAW,CAAC,gBAAgB;gBAC9B,CAAC,CAAC,WAAW,CAAC,gBAAgB,CAAC;YACnC,IAAI,UAAU,EAAE;gBACZ,QAAQ,GAAG,uBAAuB,CAAC,UAAU,CAAC,CAAC;aAClD;SACJ;QACD,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;QACvD,IAAI,GAAG,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAC;QACtD,IAAI,YAAY,GAAG,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,eAAe,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;QACtH,IAAI,YAAY,GAAG,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,eAAe,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;QACtH,OAAsB;YAClB,cAAc,EAAE,YAAY,IAAI,EAAE;YAClC,cAAc,EAAE,YAAY,IAAI,EAAE;SACrC,CAAA;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,gBAAgB,CAClB,UAAmB,EACnB,MAAsB;QAEtB,IAAI,OAAO,GAAG,WAAW,CAAC,gBAAgB,CAAC;QAC3C,IAAI,QAAQ,GAAG,uBAAuB,CAAC,UAAU,CAAC,CAAC;QACnD,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;QACvD,IAAI,GAAG,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAC;QACtD,OAAO,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,YAAY,EAAE,CAAC;IACrD,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,gBAAgB,CAClB,UAAmB,EACnB,MAAsB;QAEtB,IAAI,OAAO,GAAG,WAAW,CAAC,gBAAgB,CAAC;QAC3C,IAAI,QAAQ,GAAG,uBAAuB,CAAC,UAAU,CAAC,CAAC;QACnD,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;QACvD,IAAI,GAAG,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAC;QACtD,OAAO,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,YAAY,EAAE,CAAC;IACrD,CAAC;IAED;;;;;;OAMG;IACH,KAAK,CAAC,WAAW,CACb,MAAc,EACd,UAAkB,EAClB,YAAoB,EACpB,MAAsB;QAEtB,IAAI,YAAY,GAAG,MAAM,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,UAAU,EAAE,MAAM,CAAC,CAAC;QACvE,IAAI,UAAU,GAAG,MAAM,KAAK,cAAM,CAAC,MAAM;YACrC,CAAC,CAAC,YAAY,CAAC,cAAc;YAC7B,CAAC,CAAC,YAAY,CAAC,cAAc,CAAC;QAClC,IAAI,YAAY,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,KAAK,YAAY,CAAC,CAAC;QACjF,mCAAmC;QACnC,+FAA+F;QAC/F,IAAI;QACJ,OAAO,YAAY,CAAA;IACvB,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,eAAe,CACjB,UAAkB,EAClB,YAAoB,EACpB,MAAsB;QACtB,OAAO,IAAI,CAAC,WAAW,CAAC,cAAM,CAAC,MAAM,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,CAAC,CAAC;IAC7E,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,eAAe,CACjB,UAAkB,EAClB,YAAoB,EACpB,MAAsB;QAEtB,OAAO,IAAI,CAAC,WAAW,CAAC,cAAM,CAAC,MAAM,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,CAAC,CAAC;IAC7E,CAAC;IAED;;;;;;;;OAQG;IACK,KAAK,CAAC,WAAW,CAAC,MAAc,EAAE,UAAkB,EAAE,YAAoB,EAAE,MAAsB;QACtG,IAAI,GAAG,CAAC;QACR,MAAM,KAAK,cAAM,CAAC,MAAM;YACpB,CAAC,CAAC,GAAG,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,UAAU,EAAE,YAAY,EAAE,MAAM,CAAC;YACpE,CAAC,CAAC,GAAG,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,UAAU,EAAE,YAAY,EAAE,MAAM,CAAC,CAAC;QACzE,OAAO,GAAG,IAAI,IAAI,CAAC;IACvB,CAAC;IAID;;OAEG;IACH,KAAK,CAAC,cAAc,CAChB,MAAc,EACd,QAAkB,EAClB,MAAsB;QAEtB,IAAI;YACA,IAAI,OAAO,GAAG,MAAM,KAAK,cAAM,CAAC,MAAM;gBAClC,CAAC,CAAC,WAAW,CAAC,kBAAkB;gBAChC,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC;YACrC,IAAI,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,0BAAkB,CAAC,MAAM,CAAC;YACvE,IAAI,aAAa,GAAG;gBAChB,uBAAuB,CAAC,QAAQ,EAAE,MAAM,CAAC;gBACzC,gBAAQ,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC;gBACnC,qBAAa,CAAC,mBAAmB,CAAC,MAAM,EAAE,QAAQ,CAAC,OAAO,EAAE,QAAQ,CAAC,YAAY,CAAC,CAAC,WAAW,EAAE;gBAChG,QAAQ,CAAC,WAAW,IAAI,EAAE;aAC7B,CAAC;YACF,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,aAAa,CAAC,CAAC;YAC5D,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAC;SAChD;QAAC,OAAO,KAAK,EAAE;YACZ,OAAO,sBAAc,CAAC,mBAAmB,CAAC,KAAK,CAAC,CAAC;SACpD;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,wBAAwB,CAC1B,MAAc,EACd,QAAkB,EAClB,MAAsB;QACtB,IAAI,eAAe,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QAC7F,IAAI,eAAe,EAAE;YACjB,OAA+B;gBAC3B,KAAK,EAAE,IAAI;gBACX,QAAQ,EAAE;oBACN,MAAM,EAAE,sBAAc,CAAC,aAAa,EAAE;oBACtC,UAAU,EAAE,sBAAc,CAAC,aAAa,EAAE;iBAC7C;aACJ,CAAC;SACL;QACD,IAAI,GAAG,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,CAAC;QAC9D,OAA+B;YAC3B,KAAK,EAAE,KAAK;YACZ,QAAQ,EAAE,GAAG;SAChB,CAAA;IACL,CAAC;IACD;;OAEG;IACH,KAAK,CAAC,YAAY,CACd,MAAc,EACd,QAAkB,EAClB,MAAsB;QAEtB,IAAI,OAAO,GAAG,MAAM,KAAK,cAAM,CAAC,MAAM;YAClC,CAAC,CAAC,WAAW,CAAC,gBAAgB;YAC9B,CAAC,CAAC,WAAW,CAAC,gBAAgB,CAAC;QACnC,IAAI,aAAa,GAAG,uBAAuB,CAAC,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC;QAC5E,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,aAAa,CAAC,CAAC;QAC5D,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAC;IACjD,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,aAAa,CACf,MAAc,EACd,UAAoB,EACpB,OAAiB,EACjB,MAAsB;QAEtB,IAAI,OAAO,GAAG,MAAM,KAAK,cAAM,CAAC,MAAM;YAClC,CAAC,CAAC,WAAW,CAAC,kBAAkB;YAChC,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC;QACrC,IAAI,aAAa,GAAG,uBAAuB,CAAC,UAAU,CAAC,MAAM,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;QAChF,IAAI,QAAQ,GAAG,IAAI,gBAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,aAAa,CAAC,CAAC;QAC5D,IAAI,GAAG,GAAQ,EAAE,CAAC;QAClB,IAAI,OAAO,CAAC,IAAI,EAAE;YACd,GAAG,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;SAC3B;QACD,IAAI,IAAA,uBAAe,EAAC,OAAO,CAAC,WAAW,CAAC,EAAE;YACtC,GAAG,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;SACzC;QACD,QAAQ,CAAC,QAAQ,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QAC9B,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAC;IACjD,CAAC;CAMJ;AApPD,sCAoPC"}
@@ -1,108 +0,0 @@
1
- import { DBType, RequestConfig, Schema, ResponseWithExistCheck } from "../../types/types";
2
- import { PropertyExtra } from "./property.extra";
3
- export declare class SchemaExra extends PropertyExtra {
4
- private showSchemaBase;
5
- /**
6
- * Retrieves all nodes and edge schemas from the current graphset.
7
- * @param config
8
- */
9
- showSchema(config?: RequestConfig): Promise<Schema[]>;
10
- /**
11
- * Get one schema info
12
- * @param isNode
13
- * @param name
14
- * @param config
15
- * @returns
16
- */
17
- private getSchemaBase;
18
- /**
19
- * Retrieves a node or edge schema from the current graphset.
20
- * @param name
21
- * @param dbType
22
- * @param config
23
- */
24
- getSchema(schemaName: string, dbType: DBType, config?: RequestConfig): Promise<Schema>;
25
- /**
26
- *Retrieves a node schema from the current graphset.
27
- * @param schemaName
28
- * @param config
29
- * @returns Response<Schema>
30
- */
31
- getNodeSchema(schemaName: string, config?: RequestConfig): Promise<Schema>;
32
- /**
33
- * Retrieves all node schemas from the current graphset.
34
- * @param config
35
- * @returns Response<Schema[]>
36
- */
37
- showNodeSchema(config?: RequestConfig): Promise<Schema[]>;
38
- /**
39
- * Retrieves an edge schema from the current graphset.
40
- * @param config
41
- * @returns
42
- */
43
- getEdgeSchema(schemaName: string, config?: RequestConfig): Promise<Schema>;
44
- /**
45
- * Retrieves all node schemas from the current graphset.
46
- * @param config
47
- * @returns Response<Schema[]>
48
- */
49
- showEdgeSchema(config?: RequestConfig): Promise<Schema[]>;
50
- private createSchemaBase;
51
- /**
52
- * Creates a new schema in the current graphset.
53
- * @param schema
54
- * @param isCreateProperties
55
- * @param config
56
- * @returns
57
- */
58
- createSchema(schema: Schema, isCreateProperties?: boolean, config?: RequestConfig): Promise<import("../../types/types").Response>;
59
- private hasSchema;
60
- /**
61
- * Creates a new schema in the current graphset, handling cases where the given schema name already exists by ignoring the error.
62
- * @param schema
63
- * @param config
64
- */
65
- createSchemaIfNotExist(schema: Schema, isCreateProperties?: boolean, config?: RequestConfig): Promise<ResponseWithExistCheck>;
66
- /**
67
- * Drops one schema from the current graphset by its name.
68
- */
69
- dropSchema(schema: Schema, config?: RequestConfig): Promise<import("../../types/types").Response>;
70
- /**
71
- * Creates a new node schema in the current graphset.
72
- * @param req
73
- * @param config
74
- * @returns
75
- */
76
- createNodeSchema(req: Schema, config?: RequestConfig): Promise<import("../../types/types").Response>;
77
- /**
78
- * Creates a new edge schema in the current graphset.
79
- * @param req
80
- * @param config
81
- * @returns
82
- */
83
- createEdgeSchema(req: Schema, config?: RequestConfig): Promise<import("../../types/types").Response>;
84
- /**
85
- * Alters the name and description of one existing schema in the current graphset by its name.
86
- * @param schema
87
- * @param newSchema
88
- * @param config
89
- * @returns
90
- */
91
- alterSchema(originalSchema: Schema, newSchema: Schema, config?: RequestConfig): Promise<import("../../types/types").Response>;
92
- /**
93
- * Alters the name and description of one existing node schema in the current graphset by its name.
94
- * @param schema
95
- * @param newSchema
96
- * @param config
97
- * @returns
98
- */
99
- alterNodeSchema(originalSchema: Schema, newSchema: Schema, config?: RequestConfig): Promise<import("../../types/types").Response>;
100
- /**
101
- * Alters the name and description of one existing edge schema in the current graphset by its name.
102
- * @param schema
103
- * @param newSchema
104
- * @param config
105
- * @returns
106
- */
107
- alterEdgeSchema(originalSchema: Schema, newSchema: Schema, config?: RequestConfig): Promise<import("../../types/types").Response>;
108
- }