The authentication works and I am back on the track for SSN. Was not as hard as i expected.
I basically do the same stuff, as you did with the JDBC conncetor:
I need to map the results to List<Connection<?>> resultList. But I dunno what exactly I have to do, because you use a RowMapper helper class.Code:ExecutionResult results = engine.execute("start user=node:User(uuid={" + userId + "}) match user-[:HAS_SOCIAL_CONNECTION]->connection return connection");
How does the List look like?
I think it should not be hard to convert that list into List<Connection<?>>, is it?Code:results.columns() // returns List<String>


Reply With Quote
