This is my query:
match(n:PLAYER) RETURN player.name
And this is the error:
Variable `player` not defined (line 1, column 24 (offset: 23))
"match(n:PLAYER) RETURN player.name"
and this is an example of a PLAYER node:
{
"identity": 0,
"labels": [
"PLAYER"
],
"properties": {
"number": 0,
"name": "Russell Westbrook",
"weight": 91,
"age": 33,
"height": 1.91
}
}
Seems like I'm doing everything correct. can someone please explain what I'm doing wrong? Seems like a bug in neo4j.
Thanks.