[BUG] Avoid backfilling record position on update one (#10069)
# Introduction Disabled backfilling position process on single record update It might be a too global solution ? feels a bit too easy tbh Please let me know, could not think of other side-effects close [#9925](https://github.com/twentyhq/twenty/issues/9925)
This commit is contained in:
@ -94,7 +94,7 @@ export class QueryRunnerArgsFactory {
|
|||||||
fieldMetadataMapByNameByName,
|
fieldMetadataMapByNameByName,
|
||||||
{
|
{
|
||||||
argIndex: 0,
|
argIndex: 0,
|
||||||
shouldBackfillPosition,
|
shouldBackfillPosition: false,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
} satisfies UpdateOneResolverArgs;
|
} satisfies UpdateOneResolverArgs;
|
||||||
@ -113,7 +113,7 @@ export class QueryRunnerArgsFactory {
|
|||||||
fieldMetadataMapByNameByName,
|
fieldMetadataMapByNameByName,
|
||||||
{
|
{
|
||||||
argIndex: index,
|
argIndex: index,
|
||||||
shouldBackfillPosition,
|
shouldBackfillPosition: false,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
) ?? [],
|
) ?? [],
|
||||||
|
|||||||
Reference in New Issue
Block a user