Index v2 runner (#14537)
## Introduction https://github.com/twentyhq/twenty/pull/14363 In this PR we're creating builder and runner for index metadata Removing its previous integration within object builder ## Next: - implem index impact on field and object metadata api - Add integration testing coverage add integration test on index - Implement uniqueness toggle in field metadata api - add integration test on uniqueness related to https://github.com/twentyhq/core-team-issues/issues/1344
This commit is contained in:
+6
-1
@@ -2,7 +2,12 @@ import { type IndexMetadataEntity } from 'src/engine/metadata-modules/index-meta
|
||||
|
||||
export type PartialIndexMetadata = Omit<
|
||||
IndexMetadataEntity,
|
||||
'id' | 'objectMetadata' | 'indexFieldMetadatas' | 'createdAt' | 'updatedAt'
|
||||
| 'id'
|
||||
| 'objectMetadata'
|
||||
| 'indexFieldMetadatas'
|
||||
| 'createdAt'
|
||||
| 'updatedAt'
|
||||
| 'universalIdentifier'
|
||||
> & {
|
||||
columns: string[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user