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:
Code:
ExecutionResult results = engine.execute("start user=node:User(uuid={" + userId + "}) match user-[:HAS_SOCIAL_CONNECTION]->connection return connection");
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.

How does the List look like?

Code:
results.columns() // returns List<String>
I think it should not be hard to convert that list into List<Connection<?>>, is it?