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
I have a space with one TAG and one EDGE:
CREATE TAG word_id(name string, type string);
CREATE EDGE relate(score double);
And I want to do an intersect operation from any two source vertexes, for example:
go from 4215130453256056456 over relate YIELD relate._dst as vid INTERSECT go from 7170974402207269349 over relate yield relate._dst as vid;
It can only return dst vid list, how could I to get edge relate.score(of both src vid) and dst.name in the same nGQL?
The text was updated successfully, but these errors were encountered:
Introduction
I have a space with one TAG and one EDGE:
CREATE TAG word_id(name string, type string);
CREATE EDGE relate(score double);
And I want to do an intersect operation from any two source vertexes, for example:
go from 4215130453256056456 over relate YIELD relate._dst as vid INTERSECT go from 7170974402207269349 over relate yield relate._dst as vid;
It can only return dst vid list, how could I to get edge relate.score(of both src vid) and dst.name in the same nGQL?
The text was updated successfully, but these errors were encountered: