0

I am using GraphXR with Neo4j. When trying to save the graph to neo4j, I am presented with the following error:- There is no procedure name 'db.constraints()'.

I am using v5.3.0. I know that the above procedure is deprecated but is there a workaround for the same or can I roll back to a previous version where the procedure name is present.

I have tried to check and operate on config file but nothing works.

cybersam
  • 63,203
  • 6
  • 53
  • 76

1 Answers1

2

You can now use the Cypher SHOW CONSTRAINTS clause in place of the db.constraints procedure.

And there is also now a SHOW INDEXES to replace the db.indexes procedure.

cybersam
  • 63,203
  • 6
  • 53
  • 76
  • Actually I wanted to use GraphXR but while saving the work to neo4j i encountered this error. Any way to resolve this? – Aibhinav Upadhyay May 24 '23 at 08:42
  • GraphXR needs to update their Cypher logic then. Best would be to open an issue to let them know about the change cybersam just described. – fbiville May 25 '23 at 12:18