11.4. Comments

To add comments to your queries, use double slash. Examples:

START n=node(1) RETURN n //This is an end of line comment
START n=node(1)
//This is a whole line comment
RETURN n
START n=node(1) WHERE n.property = "//This is NOT a comment" RETURN n