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:
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user