Fix: check if relation creates existing field name (#3433)

* Fix: check if relation creates existing field name

* fix rebase

* add object name to performance log
This commit is contained in:
Weiko
2024-01-15 14:13:57 +01:00
committed by GitHub
parent 16a24c5f0c
commit ed6458e833
4 changed files with 218 additions and 135 deletions

View File

@ -76,7 +76,11 @@ export class WorkspaceQueryRunnerService {
const result = await this.execute(query, workspaceId);
const end = performance.now();
console.log(`query time: ${end - start} ms`);
console.log(
`query time: ${end - start} ms on query ${
options.objectMetadataItem.nameSingular
}`,
);
return this.parseResult<IConnection<Record>>(
result,