Skip to content

Commit

Permalink
Update remove.md - Fix tables (#102)
Browse files Browse the repository at this point in the history
Fix tables
  • Loading branch information
gkorland authored Dec 11, 2024
1 parent 165e935 commit beec6e1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cypher/remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ RETURN n.name, n.score
```

Result:

|n.name|n.score|
|------|-------|
|"Andy"| Null |
Expand All @@ -46,6 +47,7 @@ RETURN n.name, labels(n)
```

Result:

|n.name|labels(n)|
|------|--------|
|"Lori"|[Player]|
Expand All @@ -63,6 +65,7 @@ RETURN n.name, labels(n)
```

Result:

|n.name|labels(n)|
|------|--------|
|"Lori"|[] |

0 comments on commit beec6e1

Please sign in to comment.