Fix two typos in user docs cypher guide
Reviewers: ipaljak Reviewed By: ipaljak Subscribers: buda Differential Revision: https://phabricator.memgraph.io/D1486
This commit is contained in:
parent
653ab6121c
commit
2590bcb7db
@ -323,7 +323,7 @@ Labels and properties can be set during creation using the same syntax as in
|
|||||||
property:
|
property:
|
||||||
|
|
||||||
```opencypher
|
```opencypher
|
||||||
CREATE (node :Label {property: "my property value"}
|
CREATE (node :Label {property: "my property value"})
|
||||||
```
|
```
|
||||||
|
|
||||||
Additional information on `CREATE` is
|
Additional information on `CREATE` is
|
||||||
@ -530,7 +530,7 @@ value. If `True`, matching continues, otherwise the path is discarded.
|
|||||||
The previous example can be written using the `all` function:
|
The previous example can be written using the `all` function:
|
||||||
|
|
||||||
```opencypher
|
```opencypher
|
||||||
MATCH (n)-[edge_list *]-(m) WHERE all(edge IN r WHERE 0 < edge.x < 10)
|
MATCH (n)-[edge_list *]-(m) WHERE all(edge IN edge_list WHERE 0 < edge.x < 10)
|
||||||
```
|
```
|
||||||
|
|
||||||
However, filtering using a lambda function is more efficient because paths
|
However, filtering using a lambda function is more efficient because paths
|
||||||
|
Loading…
Reference in New Issue
Block a user