Hi,
To connect to an API I need to specify a key as a part of the connection URL and a message body via POST.
I can do the query part ok using the uri-variable to extract the API key from the...
Type: Posts; User: c-fly; Keyword(s):
Hi,
To connect to an API I need to specify a key as a part of the connection URL and a message body via POST.
I can do the query part ok using the uri-variable to extract the API key from the...
I had a very similar problem (only a few threads away).
By changing
<aspectLibrary>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
...
The AspectJ path contained the jars for spring-aspects and spring-data-neo4j.
The change you have highlighted is the only change needed.
The problem I have when using version 1.4 is that...
Forgot to mention that this only works for aspect-maven-plugin version 1.2.
Hi Michael,
My AspectJ path was not correct. But I have changed this now and it has fixed the problem.
Looking at the nightly build documentation, I have noticed that the AspectJ configuration...
I have recently upgraded from SDN 1.1.0.RELEASE to SDN 2.0.0.RC1.
This has caused the aspectj-maven-plugin (version 1.4) to stop being able to work properly and so I am stuck with my @NodeEntity...
I am thinking more along the lines of something of a more general case, a bit like:
START tags=node(y1,y2,y3)
MATCH ALL(tags <-- movie )
RETURN movie
So rather then explicitly define a set of...
I am trying to extent a simple collaborative filtering process to include returning only recommendations of items that contain a given set of category tags.
i.e. find me all films that are tagged...
Hi all,
When using the spring-data-neo4j @Query annotation to run a gremlin query I get the following error
java.lang.RuntimeException: Index already exists: __types__
at...