I have some nodes of type User that are attached to the root node like so
var node = _graphClient.Create(new User{Name= "Bob}, new UserBelongsTo(_graphClient.RootNode));
I would like to perform a query that will return all users that are connected to the root node. How do I do this using the neo4jClient?