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

Hi, you can do the courses by neo4j ( GraphAcademy Online Training - GraphAcademy Online Training )

You want to create a graph from JAVA, you can use neo4j Java API and driver (Using Neo4j from Java - Developer Guides)

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

Thanks