Neo4j OGM is a fast object-graph mapping library for Neo4j, optimised for server-based installations and utilising Cypher via the transactional HTTP endpoint. Neo4j-OGM aims to simplify development with the Neo4j graph database and like JPA, it uses annotations on simple POJO domain objects. Together with metadata, the annotations drive mapping the POJO entities and their fields to nodes, relationships, and properties in the graph database.
Questions tagged [neo4j-ogm]
516 questions
-1
votes
1 answer
Neo4j create node
I'm using repository which extends GraphRepository. It is easy to do some queries or save nodes by derived methods, but is there any simply way to create node? For example, for queries I can use repository.findAll(), to save it is repository.save()…

Ukis
- 13
- 4
-1
votes
1 answer
Why does Neo4j OGM delete method return void?
I've noticed that the delete method of the GenericService as shown in the Neo4j OGM docs, http://neo4j.com/docs/ogm/java/stable/ returns void. It is the same for the various delete methods of the CrudRepository of SDN…

mmwaikar
- 655
- 4
- 14
-1
votes
1 answer
How can I diagnose this neo4j-ogm / mvn spring-boot:run issue?
I'm hoping someone can suggest a strategy I can use to diagnose this. I think it could be a bug in the spring-boot maven plugin.
I'm working on an application using neo4j-ogm for persistence.
When I launch it in eclipse, or as an executable jar,…

John Deverall
- 5,954
- 3
- 27
- 37
-1
votes
1 answer
How to create a relationship for single start node and multiple end node using spring boot and Neo4j?
I have scenario for user/role mapping to do CRUD operations. For that in Neo4j I have
the following nodes
User
Role
Blueprint
Template
Catalogue
I could make a relationship with user for appropriate role. Now, I need to create a relationship…

DIVA
- 549
- 2
- 11
- 34
-2
votes
1 answer
what is best way to design neo4j graph when relation also have some information to be node
Suppose we have person entity and trip relation to destination entity like city , and we wanna add 3 or 4 kind of information like transportation( type , ticket number , date , .. ) ,that must be node as itself to this relation ..
The question is…

Farjam Ramezan pour
- 15
- 6
-2
votes
1 answer
Can Neo4J OGM handle loading and saving a sub-graph?
I would like to load a sub-graph from Neo4J database and use OGM for automatic mapping into entities. After that I wish to change content of some of the entities, and finally the entities should be mapped back into an updated sub-graph that should…

JAQ
- 1