serait-il possible pour toi de poser ton questions en anglais, comme
sp�cifique et pr�cis que possible? �a serait surement plus facile pour
la communaut� neo4j de r�pondre ...
Merci!
> Hello,
> Je viens de d�couvrir neo4j. Je voudrais cr�er une base de donnn�es de
> type graphe, en java et utiliser neo4j pour cela. J'ai parcouru votre
> documentation, mais je constate que je ne sais pas par quoi commencer.
> J'ai essay� des faire les �xemple de codes, mais il se trouve que je
> sais pas comment faire ppour visualiser les graphes que je suis en
> train de cr�er. Comment dois-je proc�der �tape par �tape?
> cordialement
Il y a des examples ici: https://github.com/jimwebber/neo4j-tutorial
Si vous avez besoin d'aide, emailez la liste en anglais (comme Axel a dit), ou emailez moi et je vais essayer vous aider en mon mauvais français.
Jim
On 17 Apr 2012, at 18:12, Axel Morgner wrote:
> Salut,
>
> serait-il possible pour toi de poser ton questions en anglais, comme spécifique et précis que possible? Ça serait surement plus facile pour la communauté neo4j de répondre ...
>
> Merci!
>
>> Hello,
>> Je viens de découvrir neo4j. Je voudrais créer une base de donnnées de
>> type graphe, en java et utiliser neo4j pour cela. J'ai parcouru votre
>> documentation, mais je constate que je ne sais pas par quoi commencer.
>> J'ai essayé des faire les éxemple de codes, mais il se trouve que je
>> sais pas comment faire ppour visualiser les graphes que je suis en
In fact I would like to make an application which is going to model an information system with the various links between the nodes .
First of all, I have to set up a database of type graph, for a global view in the interface of application. And theyasked me to use NEO4J.
I read tutorials, there is a lot of information and I do not know how to structure them, could you help me step by step for this conception ?
(user) { "name": "Axel" }
(document) { "title" : "neo4j community email" }
(user)-[:CREATED]->(document) { "at" : "April 20 2012" }
On getting started:
As Jim said you can use the java-API to create that database by calling createNode(), node.createRelationshipTo() and node/rel.setProperty()
If you just want to model your domain, use a whiteboard.
If you want to visualize your db you can either use the neo4j-console for trying it out:
e.g.
http://console.neo4j.org/usage.html
enter the notation above into the first text area then you can get your temporary graph going (you can enter the same notation on the command line or cypher-statements to query the graph).
(that is just an in-memory representation, so if you want to keep your model hit the share button on the top right corner and copy out the db-description)
then you end up with a link to share like: http://tinyurl.com/7dtkarg
Or you download neo4j-server, start it and go to http://localhost:7474 to see your db, you can add data there on the data browser tab
Cheers
Michael