In the RETURN
part of your query, you define which parts of the pattern you are
interested in. It can be nodes, relationships, or properties on these.
Graph
To return a node, list it in the RETURN
statemenet.
Query
START n=node(2) RETURN n
The example will return the node.
To return a relationship, just include it in the RETURN
list.
Query
START n=node(1) MATCH (n)-[r:KNOWS]->(c) RETURN r
The relationship is returned by the example.
To return a property, use the dot separator, like this:
Query
START n=node(1) RETURN n.name
The value of the property name
gets returned.
When you want to return all nodes, relationships and paths found in a query, you can use the *
symbol.
Query
START a=node(1) MATCH p=a-[r]->b RETURN *
This returns the two nodes, the relationship and the path used in the query.
Result
a | b | r | p |
---|---|---|---|
2 rows | |||
0 ms | |||
|
|
|
|
|
|
|
|
To introduce a placeholder that is made up of characters that are
outside of the english alphabet, you can use the `
to enclose the identifier, like this:
Query
START `This isn't a common identifier`=node(1) RETURN `This isn't a common identifier`.happy
The node indexed with name "A" is returned
If the name of the column should be different from the expression used, you can rename it by using AS
<new name>.
Query
START a=node(1) RETURN a.age AS SomethingTotallyDifferent
Returns the age property of a node, but renames the column.
If a property might or might not be there, you can select it optionally by adding a questionmark to the identifier, like this:
Query
START n=node(1, 2) RETURN n.age?
This example returns the age when the node has that property, or null
if the property is not there.
Copyright © 2012 Neo Technology