File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -459,24 +459,22 @@ async def create_node(
459
459
remaining_rels .append (key )
460
460
elif not rel_info .is_reference and not rel_info .is_mandatory :
461
461
if rel_info .format == RelationshipDataFormat .ONE_OBJ :
462
- expanded_data = expand_data_with_ranges (data = [value ])
463
462
nodes = await cls .create_related_nodes (
464
463
client = client ,
465
464
position = position ,
466
465
rel_info = rel_info ,
467
- data = expanded_data ,
466
+ data = value ,
468
467
branch = branch ,
469
468
default_schema_kind = default_schema_kind ,
470
469
)
471
470
clean_data [key ] = nodes [0 ]
472
471
473
472
else :
474
- expanded_data = expand_data_with_ranges (data = value )
475
473
nodes = await cls .create_related_nodes (
476
474
client = client ,
477
475
position = position ,
478
476
rel_info = rel_info ,
479
- data = expanded_data ,
477
+ data = value ,
480
478
branch = branch ,
481
479
default_schema_kind = default_schema_kind ,
482
480
)
You can’t perform that action at this time.
0 commit comments