Tagged Questions

Spring Data Graph enables POJO based development for Graph Databases like Neo4j. It extends annotated entity classes with transparent mapping functionality. A template programming model equivalent to well known Spring templates is also supported. Spring Data Graph is part of the bigger Spring Data ...

learn more… | top users | synonyms

2
votes
1answer
287 views

Paging with Spring Data Graph/Neo4j

Is it possible to fetch Page results when using Spring Data Graph (Neo4J) as the data store? The findAll(Pageable) seems to be the only Pageable query availalble when using the GraphRepository. What ...
2
votes
1answer
91 views

Any alternatives to Spring Data Graph, jo4neo, ogrm?

I'm looking for easy-to-use graph DB + ORM solution. The requirements are: Fluent Java interfaces, no need to use any XMLs. Ease of graph traversal: "give me all entities of these types, starting ...
2
votes
3answers
270 views

Spring Data Graph and Eclipse

Spent 2 days trying to understand how to enable Eclipse work with Spring Data Graph, have no idea yet. The code is like this: @NodeEntity public class Person { public Person() { ...
1
vote
1answer
115 views

Lazy/Eager loading/fetching in Neo4j/Spring-Data

I have a simple setup and encountered a puzzling (at least for me) problem: I have three pojos which are related to each other: @NodeEntity public class Unit { @GraphId Long nodeId; @Indexed ...
1
vote
2answers
123 views

Fetch annotation in SDG 2.0, fetching strategy questions

Hi all patient developers using spring data graph. Since there is so less documentation and pretty poor test coverage it is sometimes very difficult to understand what is the expected behavior of the ...
1
vote
1answer
154 views

How to persist relationships between Neo4J NodeEntitys in Spring Data Graph without calling persist twice

The test below fails if I remove the first persist(). Why do I need to persist the NodeEntity in order for the Set to be instantiated? Is there some better way to do this? I don't want to have to ...
1
vote
1answer
256 views

Cypher query to get nodes with given property values

Being new to Cypher Queries on Spring Data Graph, this may be quite trivial... I am looking for what would be the Cypher query to fetch all nodes that have a given value for a couple of properties. ...
1
vote
1answer
112 views

NoSQL DB (directed graphs) for Java/GWT?

I'm looking for no-sql directed graphs DB engine for GWT application. Requirements are: SQLite-like simplicity. Has a tool to explore/modify its structure. Doesn't require being installed (or very ...
0
votes
1answer
39 views

can't build spring-data-graph hello-worlds example

I'm new on maven and new on spring-data-neo4j too. I've downloaded this hello-worlds-example I tried to execute the example like described via maven using the command: mvn clean package exec:java ...
0
votes
2answers
23 views

Finding a datamodel online tools… from a picture

I read the docs for Spring Data Neo4j, and I found this kind of pictures: It's really funny and I want use it too! Do you know what is the website that generates it? I know that it works with some ...
0
votes
1answer
99 views

Correct way to get transactions using Spring Data Neo4j's simple object/graph mapping?

I'm using the simple object/graph mapping in Spring Data Neo4j 2.0, where I perform persistence operations using the Spring Data repository framework. I'm working with the repositories rather than ...
0
votes
1answer
90 views

How could I retrieve all the relationships from a (spring-data-)neo4j database?

Is there a way to simply retrieve all relationships of a certain type - where type is a @RelationshipEntity annotated class - from a spring-data-neo4j [SDN] database? (working with 2.0.0.RC1 & ...
0
votes
1answer
166 views

use WrappingNeoServerBootstrapper with spring-data-neo4j

Is it possible to use the WrappingNeoServerBootstrapper with spring-data-neo4j? When using an embedded database without spring-data-neo4j, one can use a WrappingNeoServerBootstrapper to enable the ...
0
votes
1answer
98 views

Spring framework version with Spring Data Neo4j

Is there a version matrix for Spring framework core with Spring Data Neo4j? I am looking for the (least) version of Spring framework core that is compatible (should be used) with Spring Data Neo4j ...
0
votes
1answer
39 views

SpringDataGraph findByProperty not working with Neo4J

When I run the code below, a new User with the expected properties is created. (I confirm with Neoclipse after running the test). However, findByPropertyValue fails to retrieve the user. It just ...
0
votes
2answers
109 views

Cypher quering using a node Id

Lets assume the following entities: A 'user' has a 'blog' and the blog has 'entries'. A blog can have multiple users and an entry has three properties, user, blog and a string entry. I want to write ...
0
votes
1answer
154 views

Spring data Neo4j @NodeEntiry and Roo @RooEntity conflict

When i try to annotate a POJO with both @NodeEntity and @RooEntity i got following error on the *_Roo_Entity IDT: can't override T org.springframework.data.neo4j.core.NodeBacked.persist() with void ...
0
votes
1answer
797 views

Spring-data cross store entity management

I want to use Postgres, MongoDB and Neo4j together in my application. I was able to configure them all, however now each of my POJOs is backed my graphNode as well as document by aspectJ. Is there ...
0
votes
2answers
260 views

@RelatedTo(elementClass = Concept.class) RelatedTo.elementClass must be a class liter

Reading this documentation, I tryed to apply to my code in this way: Triple @Entity @Table(name = "triple") @NodeEntity public class TripleDBMoldelNeoImpl implements TripleDBModel{ protected ...