File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
packages/testkit-backend/src Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ export function nativeToCypher (x) {
60
60
const node = {
61
61
id : nativeToCypher ( x . identity ) ,
62
62
labels : nativeToCypher ( x . labels ) ,
63
- props : nativeToCypher ( x . properties )
63
+ props : nativeToCypher ( x . properties ) ,
64
+ elementId : nativeToCypher ( x . elementId )
64
65
}
65
66
return { name : 'CypherNode' , data : node }
66
67
}
@@ -70,7 +71,10 @@ export function nativeToCypher (x) {
70
71
startNodeId : nativeToCypher ( x . start ) ,
71
72
endNodeId : nativeToCypher ( x . end ) ,
72
73
type : nativeToCypher ( x . type ) ,
73
- props : nativeToCypher ( x . properties )
74
+ props : nativeToCypher ( x . properties ) ,
75
+ elementId : nativeToCypher ( x . elementId ) ,
76
+ startNodeElementId : nativeToCypher ( x . startNodeElementId ) ,
77
+ endNodeElementId : nativeToCypher ( x . endNodeElementId )
74
78
}
75
79
return { name : 'CypherRelationship' , data : relationship }
76
80
}
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ const features = [
27
27
'Feature:Bolt:4.2' ,
28
28
'Feature:Bolt:4.3' ,
29
29
'Feature:Bolt:4.4' ,
30
+ 'Feature:Bolt:5.0' ,
30
31
'Feature:API:ConnectionAcquisitionTimeout' ,
31
32
'Feature:API:Driver:GetServerInfo' ,
32
33
'Feature:API:Driver.VerifyConnectivity' ,
You can’t perform that action at this time.
0 commit comments