feat: populate relation join column (#10212)
Fix https://github.com/twentyhq/core-team-issues/issues/241#issue-2793030259
This commit is contained in:
5
packages/twenty-shared/src/types/IsExactly.ts
Normal file
5
packages/twenty-shared/src/types/IsExactly.ts
Normal file
@ -0,0 +1,5 @@
|
||||
export type IsExactly<T, U> = [T] extends [U]
|
||||
? [U] extends [T]
|
||||
? true
|
||||
: false
|
||||
: false;
|
||||
@ -1,2 +1,4 @@
|
||||
export * from './ConnectedAccountProvider';
|
||||
export * from './FieldMetadataType';
|
||||
export * from './IsExactly';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user