You are in the right place:
Cypher Built on Traverse API
The problem is that your IDE does not hit breakpoints if you use eclipse, the most reliable way to do this (and end up with something that is really useful) is to download the source code and set up another “Java” project "pointing to this source.
To do this, download the source code and unzip it somewhere on your system. Click File → New → Java Project. In the next dialog box, specify the name of the project and select "Create a project from an existing source." Go to the root location of the open source library.
Assuming all of the additional libraries that a project needs, etc., are included in the loaded project, Eclipse will select everything and set the build path for you.
You need to remove the open source jar from the project creation path and add this new project to the build path of your project.
Now you can simply consider this as your code and debug as you wish.
source share