Hello everyone,
My graph db structure:
Only 1 Node type: "User" with Constraint( id=2, name='constraint_b4f8f106', type='UNIQUENESS', schema=(:User {userID}), ownedIndex=1 )
Only 1 Relation type: "follows".
Suppose that I have a User{userID:"1"}...
Hello to everyone, I'm very newbie in neo4j graph DB.
I can get shortest paths between a source user and 100 other target users as follows:
MATCH p = shortestPath(
(u1:User)-[:follows*]->(u2:User {userID:"17911468618"})
)
WHERE u1.userID IN ["173...