When running a query that returns a list of nodes using collect(), the "Raw" JSON view in Neo4j Browser incorrectly displays an empty array []. However, the "Table" view correctly displays the nodes, and the query RETURN u, t (without collect) also works correctly in Raw view. This appears to be a serialization/rendering issue in the Browser's Raw view for lists of nodes in the latest version.
Neo4j Server Version: 2025.11.2 (Enterprise)
RAW Result:
[
{
"keys": [
"u",
"tasks"
],
"length": 2,
"_fields": [
{
"identity": {
"low": 1,
"high": 0
},
"labels": [
"User"
],
"properties": {
"name": "Manjunath"
},
"elementId": "4:6dc17dd0-857f-4273-a660-3b86078edfc0:1"
},
[]
],
"_fieldLookup": {
"u": 0,
"tasks": 1
}
}
]