Taylor Gagne

Results 8 comments of Taylor Gagne

@jasperblues finally got around to trying with the neo4j driver directly and it worked. Any ideas why that is?

I just initalized the driver in my service file and called the session like so ``` const session = this.driver.session(); session .run('Merge (a:Application {name: $appName})', { appName: createUserApplications.app_name, }) .then((result)...

Running Drivine like this throws the routing table error ``` const query = new QuerySpecification() .withStatement('Merge(a:Application {name: $appName})') .bind(createUserApplications); return this.persistenceManager.execute(query); ``` ``` ERROR [ExceptionsHandler] Could not perform discovery. No...

That's with the sample application?

I gave it try and I got the same error using my db info ``` Error: Could not perform discovery. No routing servers available. Known routing table: RoutingTable[database=default database, expirationTime=0,...

Side note not sure if this effects it but I'm using Aura not a local DB with the encrypted url

Not sure if this was causing it but I did just notice that I was using the non encrypted protocol

+1 to this would be nice to create and drop databases via the connection/driver too. @adam-cowley