@@ -79,18 +79,12 @@ const protocolError: string = neo4j.error.PROTOCOL_ERROR;
79
79
const error1 : neo4j . Neo4jError = new neo4j . Neo4jError ( "Error message" ) ;
80
80
const error2 : neo4j . Neo4jError = new neo4j . Neo4jError ( "Error message" , "Error code" ) ;
81
81
82
- const node : neo4j . Node = new neo4j . types . Node ( int1 , [ ] , { } ) ;
83
- const relationship : neo4j . Relationship = new neo4j . types . Relationship ( int1 , int1 , int1 , "" , { } ) ;
84
- const unboundRelationship : neo4j . UnboundRelationship = new neo4j . types . UnboundRelationship ( int1 , "" , { } ) ;
85
- const pathSegment : neo4j . PathSegment = new neo4j . types . PathSegment ( node , relationship , node ) ;
86
- const path : neo4j . Path = new neo4j . types . Path ( node , node , [ ] ) ;
87
82
const result : neo4j . Result = readSession . run ( "" ) ;
88
83
89
84
result . then ( value => {
90
85
const resultSummary : neo4j . ResultSummary = value . summary ;
91
86
} ) ;
92
87
93
- const record : neo4j . Record = new neo4j . types . Record ( [ ] , [ ] , { } ) ;
94
88
const point : neo4j . Point = new neo4j . types . Point ( int1 , 1 , 2 , 3 ) ;
95
89
const duration : neo4j . Duration = new neo4j . types . Duration ( int1 , int1 , int1 , int1 ) ;
96
90
const localTime : neo4j . LocalTime = new neo4j . types . LocalTime ( int1 , int1 , int1 , int1 ) ;
0 commit comments