Hi i have started working the neo4j and the seraph and seraph-model packages.
A problem poped: I cannot seem to find an way to create a Node connected to other node in one query example:
Create (n:User)-[r:Has]->(p:UserImage)
I know I can do that using a the native seraph.query but then I lose some of the model features.. (like the timestamps)
Is there some otherway to do that? How expensive is to do that query in 3 steps? (create user, create image, link then)