Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
11-07-2022 10:58 PM
This is my query:
Variable `player` not defined (line 1, column 24 (offset: 23)) "match(n:PLAYER) RETURN player.name"
{
"identity": 0,
"labels": [
"PLAYER"
],
"properties": {
"number": 0,
"name": "Russell Westbrook",
"weight": 91,
"age": 33,
"height": 1.91
}
}
Solved! Go to Solution.
11-08-2022 12:17 AM - edited 11-08-2022 12:19 AM
Hello @gpadvorac 🙂
The correct query is:
MATCH (n:PLAYER)
RETURN n.name
n is the variable, PLAYER is the label and name is a property. I hope it's more clear 🙂
Regards,
Cobra
11-08-2022 12:17 AM - edited 11-08-2022 12:19 AM
Hello @gpadvorac 🙂
The correct query is:
MATCH (n:PLAYER)
RETURN n.name
n is the variable, PLAYER is the label and name is a property. I hope it's more clear 🙂
Regards,
Cobra
All the sessions of the conference are now available online