@@ -79,18 +79,12 @@ const protocolError: string = neo4j.error.PROTOCOL_ERROR;
7979const error1 : neo4j . Neo4jError = new neo4j . Neo4jError ( "Error message" ) ;
8080const error2 : neo4j . Neo4jError = new neo4j . Neo4jError ( "Error message" , "Error code" ) ;
8181
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 , [ ] ) ;
8782const result : neo4j . Result = readSession . run ( "" ) ;
8883
8984result . then ( value => {
9085 const resultSummary : neo4j . ResultSummary = value . summary ;
9186} ) ;
9287
93- const record : neo4j . Record = new neo4j . types . Record ( [ ] , [ ] , { } ) ;
9488const point : neo4j . Point = new neo4j . types . Point ( int1 , 1 , 2 , 3 ) ;
9589const duration : neo4j . Duration = new neo4j . types . Duration ( int1 , int1 , int1 , int1 ) ;
9690const localTime : neo4j . LocalTime = new neo4j . types . LocalTime ( int1 , int1 , int1 , int1 ) ;
0 commit comments