Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, shell commands, file extensions, pathnames, dummy URLs, user input are shown as follows: "A good approach for this recipe will be to go through the readme
file, which is present in the top level directory, and follow the steps given in that file".
A block of code is set as follows:
Node node = embed.createNode(); node.setProperty("name","Neo4j"); node.setProperty("Message","Hello World");
The shell commands are provided in the following manner
$ curl -H Accept:application/json -H Content-Type:application/json http://localhost:7474/db/data/node/2/relationships/all
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "We can see two nodes, 2 and 3, in the data visualization, which are connected to each other."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.