You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(czp@nebula) [nba]> MATCH p = (n:player)<-[e:like]-(m) WHERE n.age >= 33.0000000000011 RETURN n.name AS player, n.age AS age
[ERROR (-12)]: SemanticError: Data type error of field : age
Mon, 01 Feb 2021 11:06:47 CST
(czp@nebula) [nba]> MATCH p = (n:player)<-[e:like]-(m) WHERE n.age >= 33 RETURN n.name AS player, n.age AS age
+---------------------+-----+
| player | age |
+---------------------+-----+
| "Shaquile O'Neal" | 47 |
+---------------------+-----+
| "Kobe Bryant" | 40 |
+---------------------+-----+
| "Kobe Bryant" | 40 |
+---------------------+-----+
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: