@mikro-orm/core 7.0.0-dev.23 → 7.0.0-dev.231

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 (209) hide show
  1. package/EntityManager.d.ts +91 -59
  2. package/EntityManager.js +303 -251
  3. package/MikroORM.d.ts +44 -35
  4. package/MikroORM.js +109 -143
  5. package/README.md +2 -0
  6. package/cache/FileCacheAdapter.d.ts +1 -1
  7. package/cache/FileCacheAdapter.js +17 -8
  8. package/cache/GeneratedCacheAdapter.d.ts +0 -1
  9. package/cache/GeneratedCacheAdapter.js +0 -2
  10. package/cache/index.d.ts +0 -1
  11. package/cache/index.js +0 -1
  12. package/connections/Connection.d.ts +12 -5
  13. package/connections/Connection.js +21 -12
  14. package/drivers/DatabaseDriver.d.ts +25 -16
  15. package/drivers/DatabaseDriver.js +118 -35
  16. package/drivers/IDatabaseDriver.d.ts +42 -19
  17. package/entity/BaseEntity.d.ts +61 -2
  18. package/entity/BaseEntity.js +0 -3
  19. package/entity/Collection.d.ts +101 -29
  20. package/entity/Collection.js +436 -104
  21. package/entity/EntityAssigner.d.ts +1 -1
  22. package/entity/EntityAssigner.js +26 -18
  23. package/entity/EntityFactory.d.ts +7 -1
  24. package/entity/EntityFactory.js +83 -54
  25. package/entity/EntityHelper.d.ts +2 -2
  26. package/entity/EntityHelper.js +48 -15
  27. package/entity/EntityLoader.d.ts +7 -6
  28. package/entity/EntityLoader.js +221 -93
  29. package/entity/EntityRepository.d.ts +27 -7
  30. package/entity/EntityRepository.js +8 -2
  31. package/entity/PolymorphicRef.d.ts +12 -0
  32. package/entity/PolymorphicRef.js +18 -0
  33. package/entity/Reference.d.ts +1 -5
  34. package/entity/Reference.js +21 -12
  35. package/entity/WrappedEntity.d.ts +0 -5
  36. package/entity/WrappedEntity.js +2 -7
  37. package/entity/defineEntity.d.ts +380 -310
  38. package/entity/defineEntity.js +124 -273
  39. package/entity/index.d.ts +2 -2
  40. package/entity/index.js +2 -2
  41. package/entity/utils.js +1 -1
  42. package/entity/validators.d.ts +11 -0
  43. package/entity/validators.js +65 -0
  44. package/enums.d.ts +8 -6
  45. package/enums.js +2 -1
  46. package/errors.d.ts +20 -10
  47. package/errors.js +55 -23
  48. package/events/EventManager.d.ts +2 -1
  49. package/events/EventManager.js +19 -11
  50. package/hydration/Hydrator.js +1 -2
  51. package/hydration/ObjectHydrator.d.ts +4 -4
  52. package/hydration/ObjectHydrator.js +87 -35
  53. package/index.d.ts +2 -2
  54. package/index.js +1 -2
  55. package/logging/DefaultLogger.d.ts +1 -1
  56. package/logging/DefaultLogger.js +1 -0
  57. package/logging/SimpleLogger.d.ts +1 -1
  58. package/logging/colors.d.ts +1 -1
  59. package/logging/colors.js +7 -6
  60. package/logging/index.d.ts +1 -0
  61. package/logging/index.js +1 -0
  62. package/logging/inspect.d.ts +2 -0
  63. package/logging/inspect.js +11 -0
  64. package/metadata/EntitySchema.d.ts +47 -23
  65. package/metadata/EntitySchema.js +92 -33
  66. package/metadata/MetadataDiscovery.d.ts +64 -9
  67. package/metadata/MetadataDiscovery.js +778 -325
  68. package/metadata/MetadataProvider.d.ts +11 -2
  69. package/metadata/MetadataProvider.js +46 -2
  70. package/metadata/MetadataStorage.d.ts +13 -11
  71. package/metadata/MetadataStorage.js +70 -37
  72. package/metadata/MetadataValidator.d.ts +32 -9
  73. package/metadata/MetadataValidator.js +196 -41
  74. package/metadata/discover-entities.d.ts +5 -0
  75. package/metadata/discover-entities.js +40 -0
  76. package/metadata/index.d.ts +1 -1
  77. package/metadata/index.js +1 -1
  78. package/metadata/types.d.ts +526 -0
  79. package/metadata/types.js +1 -0
  80. package/naming-strategy/AbstractNamingStrategy.d.ts +16 -4
  81. package/naming-strategy/AbstractNamingStrategy.js +20 -2
  82. package/naming-strategy/EntityCaseNamingStrategy.d.ts +3 -3
  83. package/naming-strategy/EntityCaseNamingStrategy.js +6 -5
  84. package/naming-strategy/MongoNamingStrategy.d.ts +3 -3
  85. package/naming-strategy/MongoNamingStrategy.js +6 -6
  86. package/naming-strategy/NamingStrategy.d.ts +28 -4
  87. package/naming-strategy/UnderscoreNamingStrategy.d.ts +3 -3
  88. package/naming-strategy/UnderscoreNamingStrategy.js +6 -6
  89. package/not-supported.d.ts +2 -0
  90. package/not-supported.js +4 -0
  91. package/package.json +19 -11
  92. package/platforms/ExceptionConverter.js +1 -1
  93. package/platforms/Platform.d.ts +7 -14
  94. package/platforms/Platform.js +20 -43
  95. package/serialization/EntitySerializer.d.ts +5 -0
  96. package/serialization/EntitySerializer.js +47 -27
  97. package/serialization/EntityTransformer.js +28 -18
  98. package/serialization/SerializationContext.d.ts +6 -6
  99. package/serialization/SerializationContext.js +3 -3
  100. package/types/ArrayType.d.ts +1 -1
  101. package/types/ArrayType.js +2 -3
  102. package/types/BigIntType.d.ts +8 -6
  103. package/types/BigIntType.js +1 -1
  104. package/types/BlobType.d.ts +0 -1
  105. package/types/BlobType.js +0 -3
  106. package/types/BooleanType.d.ts +1 -0
  107. package/types/BooleanType.js +3 -0
  108. package/types/DecimalType.d.ts +6 -4
  109. package/types/DecimalType.js +2 -2
  110. package/types/DoubleType.js +1 -1
  111. package/types/EnumArrayType.js +1 -2
  112. package/types/JsonType.d.ts +1 -1
  113. package/types/JsonType.js +7 -2
  114. package/types/TinyIntType.js +1 -1
  115. package/types/Type.d.ts +2 -4
  116. package/types/Type.js +3 -3
  117. package/types/Uint8ArrayType.d.ts +0 -1
  118. package/types/Uint8ArrayType.js +1 -4
  119. package/types/index.d.ts +1 -1
  120. package/typings.d.ts +381 -171
  121. package/typings.js +97 -44
  122. package/unit-of-work/ChangeSet.d.ts +4 -6
  123. package/unit-of-work/ChangeSet.js +4 -5
  124. package/unit-of-work/ChangeSetComputer.d.ts +1 -3
  125. package/unit-of-work/ChangeSetComputer.js +35 -14
  126. package/unit-of-work/ChangeSetPersister.d.ts +7 -3
  127. package/unit-of-work/ChangeSetPersister.js +83 -25
  128. package/unit-of-work/CommitOrderCalculator.d.ts +12 -10
  129. package/unit-of-work/CommitOrderCalculator.js +13 -13
  130. package/unit-of-work/IdentityMap.d.ts +12 -0
  131. package/unit-of-work/IdentityMap.js +39 -1
  132. package/unit-of-work/UnitOfWork.d.ts +27 -3
  133. package/unit-of-work/UnitOfWork.js +258 -92
  134. package/utils/AbstractSchemaGenerator.d.ts +5 -5
  135. package/utils/AbstractSchemaGenerator.js +28 -17
  136. package/utils/AsyncContext.d.ts +6 -0
  137. package/utils/AsyncContext.js +42 -0
  138. package/utils/Configuration.d.ts +795 -209
  139. package/utils/Configuration.js +150 -192
  140. package/utils/ConfigurationLoader.d.ts +1 -54
  141. package/utils/ConfigurationLoader.js +1 -352
  142. package/utils/Cursor.d.ts +0 -3
  143. package/utils/Cursor.js +24 -11
  144. package/utils/DataloaderUtils.d.ts +10 -5
  145. package/utils/DataloaderUtils.js +29 -12
  146. package/utils/EntityComparator.d.ts +16 -9
  147. package/utils/EntityComparator.js +158 -58
  148. package/utils/QueryHelper.d.ts +18 -6
  149. package/utils/QueryHelper.js +76 -23
  150. package/utils/RawQueryFragment.d.ts +28 -34
  151. package/utils/RawQueryFragment.js +35 -71
  152. package/utils/RequestContext.js +2 -2
  153. package/utils/TransactionContext.js +2 -2
  154. package/utils/TransactionManager.js +28 -4
  155. package/utils/Utils.d.ts +14 -127
  156. package/utils/Utils.js +85 -397
  157. package/utils/clone.js +8 -23
  158. package/utils/env-vars.d.ts +7 -0
  159. package/utils/env-vars.js +97 -0
  160. package/utils/fs-utils.d.ts +33 -0
  161. package/utils/fs-utils.js +192 -0
  162. package/utils/index.d.ts +1 -1
  163. package/utils/index.js +1 -1
  164. package/utils/upsert-utils.d.ts +9 -4
  165. package/utils/upsert-utils.js +46 -3
  166. package/decorators/Check.d.ts +0 -3
  167. package/decorators/Check.js +0 -13
  168. package/decorators/CreateRequestContext.d.ts +0 -3
  169. package/decorators/CreateRequestContext.js +0 -32
  170. package/decorators/Embeddable.d.ts +0 -8
  171. package/decorators/Embeddable.js +0 -11
  172. package/decorators/Embedded.d.ts +0 -12
  173. package/decorators/Embedded.js +0 -18
  174. package/decorators/Entity.d.ts +0 -33
  175. package/decorators/Entity.js +0 -12
  176. package/decorators/Enum.d.ts +0 -9
  177. package/decorators/Enum.js +0 -16
  178. package/decorators/Filter.d.ts +0 -2
  179. package/decorators/Filter.js +0 -8
  180. package/decorators/Formula.d.ts +0 -4
  181. package/decorators/Formula.js +0 -15
  182. package/decorators/Indexed.d.ts +0 -19
  183. package/decorators/Indexed.js +0 -20
  184. package/decorators/ManyToMany.d.ts +0 -42
  185. package/decorators/ManyToMany.js +0 -14
  186. package/decorators/ManyToOne.d.ts +0 -34
  187. package/decorators/ManyToOne.js +0 -14
  188. package/decorators/OneToMany.d.ts +0 -28
  189. package/decorators/OneToMany.js +0 -17
  190. package/decorators/OneToOne.d.ts +0 -28
  191. package/decorators/OneToOne.js +0 -7
  192. package/decorators/PrimaryKey.d.ts +0 -8
  193. package/decorators/PrimaryKey.js +0 -20
  194. package/decorators/Property.d.ts +0 -250
  195. package/decorators/Property.js +0 -32
  196. package/decorators/Transactional.d.ts +0 -14
  197. package/decorators/Transactional.js +0 -28
  198. package/decorators/hooks.d.ts +0 -16
  199. package/decorators/hooks.js +0 -47
  200. package/decorators/index.d.ts +0 -17
  201. package/decorators/index.js +0 -17
  202. package/entity/ArrayCollection.d.ts +0 -118
  203. package/entity/ArrayCollection.js +0 -407
  204. package/entity/EntityValidator.d.ts +0 -19
  205. package/entity/EntityValidator.js +0 -150
  206. package/metadata/ReflectMetadataProvider.d.ts +0 -8
  207. package/metadata/ReflectMetadataProvider.js +0 -44
  208. package/utils/resolveContextProvider.d.ts +0 -10
  209. package/utils/resolveContextProvider.js +0 -28
package/utils/Utils.d.ts CHANGED
@@ -1,9 +1,8 @@
1
- import { type GlobOptions } from 'tinyglobby';
2
- import type { Dictionary, EntityData, EntityDictionary, EntityKey, EntityMetadata, EntityName, EntityProperty, IMetadataStorage, Primary } from '../typings.js';
1
+ import type { CompiledFunctions, Dictionary, EntityData, EntityDictionary, EntityKey, EntityMetadata, EntityName, EntityProperty, Primary } from '../typings.js';
3
2
  import type { Collection } from '../entity/Collection.js';
4
3
  import type { Platform } from '../platforms/Platform.js';
5
- import type { ScalarReference } from '../entity/Reference.js';
6
- export declare const ObjectBindingPattern: unique symbol;
4
+ import { type ScalarReference } from '../entity/Reference.js';
5
+ import { type RawQueryFragmentSymbol } from './RawQueryFragment.js';
7
6
  export declare function compareObjects(a: any, b: any): boolean;
8
7
  export declare function compareArrays(a: any[] | string, b: any[] | string): boolean;
9
8
  export declare function compareBooleans(a: unknown, b: unknown): boolean;
@@ -14,34 +13,16 @@ export declare function compareBuffers(a: Uint8Array, b: Uint8Array): boolean;
14
13
  export declare function equals(a: any, b: any): boolean;
15
14
  export declare function parseJsonSafe<T = unknown>(value: unknown): T;
16
15
  export declare class Utils {
16
+ #private;
17
17
  static readonly PK_SEPARATOR = "~~~";
18
- static dynamicImportProvider: (id: string) => Promise<any>;
19
- /**
20
- * Checks if the argument is not undefined
21
- */
22
- static isDefined<T = Record<string, unknown>>(data: any): data is T;
23
18
  /**
24
19
  * Checks if the argument is instance of `Object`. Returns false for arrays.
25
20
  */
26
21
  static isObject<T = Dictionary>(o: any): o is T;
27
- /**
28
- * Relation decorators allow using two signatures
29
- * - using first parameter as options object
30
- * - using all parameters
31
- *
32
- * This function validates those two ways are not mixed and returns the final options object.
33
- * If the second way is used, we always consider the last parameter as options object.
34
- * @internal
35
- */
36
- static processDecoratorParameters<T>(params: Dictionary): T;
37
- /**
38
- * Checks if the argument is instance of `Object`, but not one of the blacklisted types. Returns false for arrays.
39
- */
40
- static isNotObject<T = Dictionary>(o: any, not: any[]): o is T;
41
22
  /**
42
23
  * Removes `undefined` properties (recursively) so they are not saved as nulls
43
24
  */
44
- static dropUndefinedProperties<T = Dictionary | unknown[]>(o: any, value?: undefined | null, visited?: Set<unknown>): void;
25
+ static dropUndefinedProperties(o: any, value?: undefined | null, visited?: Set<unknown>): void;
45
26
  /**
46
27
  * Returns the number of properties on `obj`. This is 20x faster than Object.keys(obj).length.
47
28
  * @see https://github.com/deepkit/deepkit-framework/blob/master/packages/core/src/core.ts
@@ -52,14 +33,6 @@ export declare class Utils {
52
33
  * @see https://github.com/deepkit/deepkit-framework/blob/master/packages/core/src/core.ts
53
34
  */
54
35
  static hasObjectKeys(object: Dictionary): boolean;
55
- /**
56
- * Checks if the argument is string
57
- */
58
- static isString(s: any): s is string;
59
- /**
60
- * Checks if the argument is number
61
- */
62
- static isNumber<T = number>(s: any): s is T;
63
36
  /**
64
37
  * Checks if arguments are deeply (but not strictly) equal.
65
38
  */
@@ -80,11 +53,6 @@ export declare class Utils {
80
53
  * Merges all sources into the target recursively.
81
54
  */
82
55
  private static _merge;
83
- static getRootEntity(metadata: IMetadataStorage, meta: EntityMetadata): EntityMetadata;
84
- /**
85
- * Computes difference between two objects, ignoring items missing in `b`.
86
- */
87
- static diff(a: Dictionary, b: Dictionary): Record<keyof (typeof a & typeof b), any>;
88
56
  /**
89
57
  * Creates deep copy of given object.
90
58
  */
@@ -102,26 +70,11 @@ export declare class Utils {
102
70
  */
103
71
  static renameKey<T>(payload: T, from: string | keyof T, to: string): void;
104
72
  /**
105
- * Returns array of functions argument names. Uses `esprima` for source code analysis.
106
- */
107
- static tokenize(func: {
108
- toString(): string;
109
- } | string | {
110
- type: string;
111
- value: string;
112
- }[]): {
113
- type: string;
114
- value: string;
115
- }[];
116
- /**
117
- * Returns array of functions argument names. Uses `esprima` for source code analysis.
73
+ * Returns array of functions argument names. Uses basic regex for source code analysis, might not work with advanced syntax.
118
74
  */
119
- static getParamNames(func: {
75
+ static getConstructorParams(func: {
120
76
  toString(): string;
121
- } | string | {
122
- type: string;
123
- value: string;
124
- }[], methodName?: string): string[];
77
+ }): string[] | undefined;
125
78
  /**
126
79
  * Checks whether the argument looks like primary key (string, number or ObjectId).
127
80
  */
@@ -134,7 +87,7 @@ export declare class Utils {
134
87
  static getCompositeKeyHash<T>(data: EntityData<T>, meta: EntityMetadata<T>, convertCustomTypes?: boolean, platform?: Platform, flat?: boolean): string;
135
88
  static getPrimaryKeyHash(pks: (string | Buffer | Date)[]): string;
136
89
  static splitPrimaryKeys<T extends object>(key: string): EntityKey<T>[];
137
- static getPrimaryKeyValues<T>(entity: T, primaryKeys: string[] | EntityMetadata<T>, allowScalar?: boolean, convertCustomTypes?: boolean): any;
90
+ static getPrimaryKeyValues<T>(entity: T, meta: EntityMetadata<T>, allowScalar?: boolean, convertCustomTypes?: boolean): any;
138
91
  static getPrimaryKeyCond<T>(entity: T, primaryKeys: EntityKey<T>[]): Record<string, Primary<T>> | null;
139
92
  /**
140
93
  * Maps nested FKs from `[1, 2, 3]` to `[1, [2, 3]]`.
@@ -150,12 +103,6 @@ export declare class Utils {
150
103
  * Checks whether given object is a scalar reference.
151
104
  */
152
105
  static isScalarReference<T = unknown>(data: any, allowReference?: boolean): data is ScalarReference<any> & {};
153
- /**
154
- * Checks whether the argument is ObjectId instance
155
- */
156
- static isObjectID(key: any): key is {
157
- toHexString: () => string;
158
- };
159
106
  /**
160
107
  * Checks whether the argument is empty (array without items, object without keys or falsy value).
161
108
  */
@@ -163,17 +110,12 @@ export declare class Utils {
163
110
  /**
164
111
  * Gets string name of given class.
165
112
  */
166
- static className<T>(classOrName: EntityName<T>): string;
113
+ static className<T>(classOrName: string | EntityName<T>): string;
167
114
  static extractChildElements(items: string[], prefix: string, allSymbol?: string): string[];
168
115
  /**
169
116
  * Tries to detect TypeScript support.
170
117
  */
171
118
  static detectTypeScriptSupport(): boolean;
172
- /**
173
- * Uses some dark magic to get source path to caller where decorator is used.
174
- * Analyses stack trace of error created inside the function call.
175
- */
176
- static lookupPathFromDecorator(name: string, stack?: string[]): string;
177
119
  /**
178
120
  * Gets the type of the argument.
179
121
  */
@@ -187,87 +129,32 @@ export declare class Utils {
187
129
  */
188
130
  static runSerial<T = any, U = any>(items: Iterable<U>, cb: (item: U) => Promise<T>): Promise<T[]>;
189
131
  static isCollection<T extends object, O extends object = object>(item: any): item is Collection<T, O>;
190
- static fileURLToPath(url: string | URL): string;
191
- /**
192
- * Resolves and normalizes a series of path parts relative to each preceding part.
193
- * If any part is a `file:` URL, it is converted to a local path. If any part is an
194
- * absolute path, it replaces preceding paths (similar to `path.resolve` in NodeJS).
195
- * Trailing directory separators are removed, and all directory separators are converted
196
- * to POSIX-style separators (`/`).
197
- */
198
- static normalizePath(...parts: string[]): string;
199
- /**
200
- * Determines the relative path between two paths. If either path is a `file:` URL,
201
- * it is converted to a local path.
202
- */
203
- static relativePath(path: string, relativeTo: string): string;
204
- /**
205
- * Computes the absolute path to for the given path relative to the provided base directory.
206
- * If either `path` or `baseDir` are `file:` URLs, they are converted to local paths.
207
- */
208
- static absolutePath(path: string, baseDir?: string): string;
209
132
  static hash(data: string, length?: number): string;
210
133
  static runIfNotEmpty(clause: () => any, data: any): void;
211
134
  static defaultValue<T extends Dictionary>(prop: T, option: keyof T, defaultValue: any): void;
212
135
  static findDuplicates<T>(items: T[]): T[];
213
136
  static removeDuplicates<T>(items: T[]): T[];
214
137
  static randomInt(min: number, max: number): number;
215
- static pathExists(path: string, options?: GlobOptions): Promise<boolean>;
216
138
  /**
217
139
  * Extracts all possible values of a TS enum. Works with both string and numeric enums.
218
140
  */
219
141
  static extractEnumValues(target: Dictionary): (string | number)[];
220
- static flatten<T>(arrays: T[][]): T[];
142
+ static flatten<T>(arrays: T[][], deep?: boolean): T[];
221
143
  static isOperator(key: PropertyKey, includeGroupOperators?: boolean): boolean;
222
- static isGroupOperator(key: PropertyKey): boolean;
223
- static isArrayOperator(key: PropertyKey): boolean;
224
- static isJsonKeyOperator(key: PropertyKey): boolean;
225
144
  static hasNestedKey(object: unknown, key: string): boolean;
226
- static getGlobalStorage(namespace: string): Dictionary;
227
- /**
228
- * Require a module from a specific location
229
- * @param id The module to require
230
- * @param [from] Location to start the node resolution
231
- */
232
- static requireFrom<T extends Dictionary>(id: string, from?: string): T;
233
- /**
234
- * Resolve path to a module.
235
- * @param id The module to require
236
- * @param [from] Location to start the node resolution
237
- */
238
- static resolveModulePath(id: string, from?: string): string;
239
- static dynamicImport<T = any>(id: string): Promise<T>;
240
- static setDynamicImportProvider(provider: (id: string) => Promise<unknown>): void;
241
- static ensureDir(path: string): void;
242
- static pathExistsSync(path: string): boolean;
243
- static readJSONSync(path: string): Dictionary;
244
145
  static getORMVersion(): string;
245
- static createFunction(context: Map<string, any>, code: string): any;
146
+ static createFunction(context: Map<string, any>, code: string, compiledFunctions?: CompiledFunctions, key?: string): any;
246
147
  static callCompiledFunction<T extends unknown[], R>(fn: (...args: T) => R, ...args: T): R;
247
- /**
248
- * @see https://github.com/mikro-orm/mikro-orm/issues/840
249
- */
250
- static propertyDecoratorReturnValue(): any;
251
148
  static unwrapProperty<T>(entity: T, meta: EntityMetadata<T>, prop: EntityProperty<T>, payload?: boolean): [unknown, number[]][];
252
149
  static setPayloadProperty<T>(entity: EntityDictionary<T>, meta: EntityMetadata<T>, prop: EntityProperty<T>, value: unknown, idx: number[]): void;
253
- static tryRequire<T extends Dictionary = any>({ module, from, allowError, warning }: {
254
- module: string;
255
- warning: string;
256
- from?: string;
257
- allowError?: string;
258
- }): T | undefined;
259
150
  static tryImport<T extends Dictionary = any>({ module, warning }: {
260
151
  module: string;
261
- warning: string;
152
+ warning?: string;
262
153
  }): Promise<T | undefined>;
263
- static stripRelativePath(str: string): string;
264
- /**
265
- * simple process.argv parser, supports only properties with long names, prefixed with `--`
266
- */
267
- static parseArgs<T extends Dictionary = Dictionary>(): T;
268
154
  static xor(a: boolean, b: boolean): boolean;
269
155
  static keys<T extends object>(obj: T): (keyof T)[];
270
156
  static values<T extends object>(obj: T): T[keyof T][];
271
157
  static entries<T extends object>(obj: T): [keyof T, T[keyof T]][];
272
158
  static primaryKeyToObject<T>(meta: EntityMetadata<T>, primaryKey: Primary<T> | T, visible?: (keyof T)[]): T;
159
+ static getObjectQueryKeys<T extends Dictionary, K extends string = Extract<keyof T, string>>(obj: T): (K | RawQueryFragmentSymbol)[];
273
160
  }