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
Say you create a quad "a,b,c,d". As expected g.V().All() gives {"result":[{"id":"a"},{"id":"b"},{"id":"c"},{"id":"d"}]} and g.V().Out().All() gives {"result":[{"id":"c"}]}.
BUT when you delete quad "a,b,c,d", g.V().Out().All() gives null (as expected) but g.V().All() STILL gives {"result":[{"id":"a"},{"id":"b"},{"id":"c"},{"id":"d"}]}.
Steps to reproduce the issue:
Using the backend of sql or leveldb, create a quad "a,b,c,d"
Description
Say you create a quad "a,b,c,d". As expected g.V().All() gives
{"result":[{"id":"a"},{"id":"b"},{"id":"c"},{"id":"d"}]}
and g.V().Out().All() gives{"result":[{"id":"c"}]}
.BUT when you delete quad "a,b,c,d", g.V().Out().All() gives null (as expected) but g.V().All() STILL gives
{"result":[{"id":"a"},{"id":"b"},{"id":"c"},{"id":"d"}]}
.Steps to reproduce the issue:
Received results:
Expected results:
Output of
cayley version
or commit hash:Environment details:
Backend database:
(sql or leveldb)
The text was updated successfully, but these errors were encountered: