i need to stop using double quotes when writing commit messages ;w;
This commit is contained in:
parent
0a1524644d
commit
ad5913cf41
1 changed files with 7 additions and 0 deletions
|
@ -83,6 +83,13 @@ RETURN e
|
||||||
|
|
||||||
this would return every entity id that has a relationship that deals more damage than its remaining health and isn't already dead
|
this would return every entity id that has a relationship that deals more damage than its remaining health and isn't already dead
|
||||||
|
|
||||||
|
```cypher
|
||||||
|
MATCH (e, h:Health { current: 35 })
|
||||||
|
RETURN e
|
||||||
|
```
|
||||||
|
|
||||||
|
it is also possible to match against specific component properties. in this query, it will match any entity which has a `Health` component where its `current` is equal to 35
|
||||||
|
|
||||||
### Selecting worlds
|
### Selecting worlds
|
||||||
```cypher
|
```cypher
|
||||||
USE ui
|
USE ui
|
||||||
|
|
Loading…
Reference in a new issue