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
The visualization should update with the nodes and relationships from the response.
Actual Behavior (Mandatory)
Nothing happens, but the same query when executed with updateWithCypher function updates the visualization and shows the right nodes and relationships.
How to Reproduce the Problem
By using this query -
MATCH (p) whereID(p) = ${nodeId}CALLapoc.path.subgraphAll(p, {minLevel:0,maxLevel:1})
YIELDnodes, relationshipsRETURNnodes, relationships
and capturing the result in a variable and passing it to updateWithFunction.
I have went through the code thoroughly and pinpointed two instances in the code where I think the bug could lie,
When running the createSingleRecord function, since the input is a JSON it doesnt recognize it as a instance of Record, so it executes the corresponding if statement which then executes this line
So this dumbToNeo4j is unable to account for _fields being a nested array and returns this result - {"keys":["nodes","relationships"],"length":2,"_fields":[null,null],"_fieldLookup":{"nodes":0,"relationships":1}}
It should account for fields in array, but maybe I forgot, Ill try to fix that, fun to have to do deseriallization myself as neo4j didn't wrote a seriallizinzation function
Expected Behavior (Mandatory)
The visualization should update with the nodes and relationships from the response.
Actual Behavior (Mandatory)
Nothing happens, but the same query when executed with updateWithCypher function updates the visualization and shows the right nodes and relationships.
How to Reproduce the Problem
By using this query -
and capturing the result in a variable and passing it to updateWithFunction.
Simple Example
Specifications (Mandatory)
Currently used versions
Versions
The text was updated successfully, but these errors were encountered: