0

I am trying to build a simple user defined procedure using the example user defined procedure supplied by neo4j. However, when I try to get a Transaction instance using "Transaction tx = db.beginTx()", the compiler complains that it cannot resolve the symbol for Transaction.

Any suggestions would be greatly appreciated.

Joel Stevick
  • 1,638
  • 2
  • 16
  • 22

1 Answers1

0

This answer was very simple. Simply import the Transaction package "org.neo4j.graphdb.Transaction"

Joel Stevick
  • 1,638
  • 2
  • 16
  • 22