* @internal
()
| 2440 | * @internal |
| 2441 | */ |
| 2442 | getAliasMap(): Dictionary<EntityName> { |
| 2443 | return Object.fromEntries( |
| 2444 | Object.entries(this.#state.aliases).map(([key, value]: [string, Alias<any>]) => [key, value.entityName]), |
| 2445 | ); |
| 2446 | } |
| 2447 | |
| 2448 | /** |
| 2449 | * Executes this QB and returns the raw results, mapped to the property names (unless disabled via last parameter). |
no test coverage detected