minor fix - reset single entity search (#7420)

minor follow up fix #7285

---------

Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
nitin
2024-10-04 02:01:03 +05:30
committed by GitHub
parent a946c6a33d
commit e3ed574420
5 changed files with 21 additions and 3 deletions

View File

@ -992,6 +992,7 @@ export type RelationDefinition = {
/** Relation definition type */
export enum RelationDefinitionType {
ManyToMany = 'MANY_TO_MANY',
ManyToOne = 'MANY_TO_ONE',
OneToMany = 'ONE_TO_MANY',
OneToOne = 'ONE_TO_ONE'
@ -999,6 +1000,7 @@ export enum RelationDefinitionType {
/** Type of the relation */
export enum RelationMetadataType {
ManyToMany = 'MANY_TO_MANY',
ManyToOne = 'MANY_TO_ONE',
OneToMany = 'ONE_TO_MANY',
OneToOne = 'ONE_TO_ONE'