cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Creating generic graph model by Java API

Hi, I want to create app in which can be possible to create graph based on putted configuration. For now it's on very beginning, I had two nodes(Child,Parent), and two hard coded relations in this nodes, and can create simple graph. but for now I don't know how to use labels, relation, indexes. There are some resource to learn how to modelling this by java API, or maybe be more precise, how to use JAVA API in modeling?

Thanks

1 REPLY 1

jggomez
Graph Voyager

Hi, you can do the courses by neo4j ( https://neo4j.com/graphacademy/online-training )

You want to create a graph from JAVA, you can use neo4j Java API and driver (https://neo4j.com/developer/java/)

If you want to design a special Java API, use DSL

Thanks