The total number of nodes I think is approximately 5000.

I do not want to limit the number that are shown. Is it not possible to 
show them all?

Thanks for the reply!!!

On Friday, 11 December 2015 15:27:59 UTC+1, Michael Hunger wrote:
>
> How many nodes?
>
> you should use limit to limit the total amount.
>
> Also Neo4j browser fetches additionally relationships between your nodes.
>
> I recommend switching off that behavior (bottom right corner 
> "auto-complete")
>
> and fetching the relationships explicitely so you have more control,e.g
>
> MATCH path = (:Foo)-->(:Bar)
> RETURN path
> LIMIT 100
>
> Am 11.12.2015 um 13:50 schrieb Noelia Osés Fernández <[email protected] 
> <javascript:>>:
>
>
> Hi. 
>
> I have installed Neo4j Community Edition to learn and practice using a 
> graph database for implementing a recommender system. 
>
> I use RNeo4j to create and use the graph. I have written some code (mostly 
> taken from Nicole White's blog). It seems that when I have just a few nodes 
> everything works well. However, using the exact same code, when I have more 
> nodes and relationships I can create the graph and it doesn't output any 
> errors. But when I want to visualise it in the neo4j browser using MATCH 
> (n) return n, it tells me how many nodes there are although it doesn't show 
> them and says there are no relationships. This is absolutely impossible 
> because when I use a subset of this data everything works and I can see 
> both the nodes and the relationships (so there are relationships!). 
>
> What could be the problem? And the solution? 
>
> Thank you very much for your help.
> Noelia
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Neo4j" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected] <javascript:>.
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to