-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Graph Editor - Under certain conditions colors are not persistent #453
Comments
hi @santo-it Thanks |
Hi, Try this:
CREATE CLASS A EXTENDS V; CREATE CLASS B EXTENDS V; CREATE CLASS C EXTENDS V; CREATE CLASS D EXTENDS V;
CREATE VERTEX A SET id = '1'; CREATE CLASS AB_Edge EXTENDS E; CREATE EDGE AB_Edge FROM (SELECT FROM A WHERE id = 1) TO (SELECT FROM B WHERE id = 1);
MATCH {class: A, as: a}-AB_Edge->{class: B, as: b}-BC_Edge->{class: C, as: c}-CD_Edge->{class: D, as: d} RETURN $elements; You ll see different colors - so 3 different sets. Here are some screenshots |
Implemented |
Colors should be persistent (until the user disconnects)
The text was updated successfully, but these errors were encountered: