Skip to content

Commit

Permalink
Removed inconsistency in the sentences. (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
muneebkhan4 authored Sep 26, 2023
1 parent d0cb51a commit 085c73b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/clauses/merge.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RETURN v
$$) as (v agtype);
```

If there exists a vertex with the label 'Critic' the vertex will be returns. If the vertex will be created and returned.
If there exists a vertex with the label 'Critic' the vertex will be returns. Otherwise, the vertex will be created and returned.

<table>
<tr>
Expand Down Expand Up @@ -68,7 +68,7 @@ RETURN charlie
$$) as (v agtype);
```

If there exists a vertex with the label 'Critic' the vertex will be returns. If the vertex will be created and returned.
If there exists a vertex with the label 'Critic' the vertex will be returns. Otherwise the vertex will be created and returned.

<table>
<tr>
Expand All @@ -85,7 +85,7 @@ If there exists a vertex with the label 'Critic' the vertex will be returns. If
</tr>
</table>

A new vertex with the name 'Charlie Sheen' will be created if not all properties exist with a single vertex. If a vertex does exist that will be returned instead.
If a vertex with all the properties exist that will be returned. Otherwise, a new vertex with the name 'Charlie Sheen' will be created and returned.


### Merge a Single Vertex Specifying Both Label and Property
Expand Down

0 comments on commit 085c73b

Please sign in to comment.