[CYPHER] RETURN valueType('abc') as t1, valueType(1) as t2, valueType(true) as t3 omits the "NON NULL" suffix in results (original) (raw)
Hello
https://neo4j.com/docs/cypher-manual/current/functions/scalar/#functions-valueType
RETURN valueType('abc') as t1, valueType(1) as t2, valueType(true) as t3
Should return
- "STRING NOT NULL"
- "INTEGER NOT NULL"
- "BOOLEAN NOT NULL"
(Don't ask me why)
But instead it returns
{
"t1": "STRING",
"t2": "INTEGER",
"t3": "BOOLEAN"
}