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
Describe the bug
When you add a new node to a graph using the command line, and then click on the Refresh Button on the frame, it doesn't update the data on the screen (you need to rerun the query and create a new query-result frame to show new data).
In the screenshot below, although the two frames have the same query SELECT * FROM cypher('test', $$ MATCH (v: Person) RETURN v $$) as (result agtype);, but then don't show the same data even after clicking on the refresh button, the data is not updated on the screen (ahmed node is not displayed)
To Reproduce
Data setup:
SELECT * FROM create_graph('test');
SELECT * FROM cypher('test', $$ CREATE (v: Person {name: 'ahmed'}) RETURN v $$) as (result agtype);
Steps to reproduce the behavior:
Open AGE Viewer tool
Connect to a database
Run a MATCH on the test graph we just created SELECT * FROM cypher('test', $$ MATCH (v: Person) RETURN v $$) as (result agtype)
Add a new node to the test graph from the command line SELECT * FROM cypher('test', $$ CREATE (v: Person {name: 'ahmed'}) RETURN v $$) as (result agtype);
Click on the refresh button on the screen frame (nothing updated)
Expected behavior
data should be updated after clicking on the refresh button
Desktop (please complete the following information):
OS: [wsl2 Ubuntu 20.04]
Browser [Chrome]
Version Latest
The text was updated successfully, but these errors were encountered:
Describe the bug
When you add a new node to a graph using the command line, and then click on the Refresh Button on the frame, it doesn't update the data on the screen (you need to rerun the query and create a new query-result frame to show new data).
In the screenshot below, although the two frames have the same query
SELECT * FROM cypher('test', $$ MATCH (v: Person) RETURN v $$) as (result agtype);
, but then don't show the same data even after clicking on the refresh button, the data is not updated on the screen (ahmed
node is not displayed)To Reproduce
Data setup:
Steps to reproduce the behavior:
MATCH
on thetest
graph we just createdSELECT * FROM cypher('test', $$ MATCH (v: Person) RETURN v $$) as (result agtype)
test
graph from the command lineSELECT * FROM cypher('test', $$ CREATE (v: Person {name: 'ahmed'}) RETURN v $$) as (result agtype);
Expected behavior
data should be updated after clicking on the refresh button
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: