Update in query

I’ve write the query to update the attribute of vertex but when I select again in that query it still return the old one. (image) How to fix this problem?

Go back in after the query has completed, and either via GraphStudio Explore Graph, or by running another query, see if the value was actually updated. I think the issue is that the update is not reflected until after the query completes, and the transaction is committed, and so you are reading the data during the query execution, so you still see the old value

1 Like