Hi guys,
I run this cypher with a browser and its works fine.
:auto MATCH (s:Person)-[r:Friend]->(t:Person)
with s,t,collect(r) as rs
where size(rs) > 1
call{
with rs
CALL apoc.refactor.mergeRelationships(rs,{properties:{`.*`: 'discard'}}) YIELD rel RETURN count(*) as d
} IN TRANSACTIONS OF 100000 ROWS RETURN d
but when I run it in my plugin or java driver shows the below error
Caused by: org.neo4j.exceptions.SyntaxException: Invalid input ':':
":auto MATCH (s:Person)-[r:Friend]->(t:Person)"
^
And when I remove the :auto get this error:
A query with 'CALL { ... } IN TRANSACTIONS' can only be executed in an implicit transaction, but tried to execute in an explicit transaction.
How can I run cypher with auto command in java driver or plugin?
Thank you in advance for your attention