Hi
my cypher query is -"RETURN apoc.coll.remove([1,3,5,7,9], 1, 2) AS output"
I am getting error org.springframework.dao.InvalidDataAccessResourceUsageException: Unknown function 'apoc.coll.remove'
help!
Hi
my DTO looks like below:
CompileStatic
RelationshipProperties
class Contains implements GraphRelationship {
Id
GeneratedValue
Long id
Contains() {
// Keep OGM Happy
}
Contains(GraphNode mappingGroup, GraphNode mapping) {
this.startEntity = mapping...
Hi
I have a query to that unwinds the list of custom objects
But after upgrading to neo4j 4.2 it is not working
error is : : Unable to convert groovy.lang.MetaClassImpl to Neo4j Value.
Hi
In my code , i have classes A,B,C,D
B, C,D are abstract classes A is concrete one
A->extends ->B->extends -> C ->extends -> D->extends->GraphNode
B, C,D are annoted with @Node with primary label and labels
is it possible to have multilevel inherit...
@michael.hunger Thanks for quick reply
I am converting that List of custom objects into List<Map<String, Object>>
with the help of PropertyUtils.describe (collect method)
Still facing same error