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
{ MATCH p = (self:Company)<-[sr:Invest|Legal]-(target)
WHERE id(self)==-7835036839804393803AND id(target)==-531217911035008506
RETURN target, p, 'C'AS nodeType, 1AS orderWeight
UNION
MATCH p = (self:Company)<-[sr:FinalBenefit]-(target:Company)
WHERE id(self)==-7835036839804393803AND id(target)==-531217911035008506ANDsr.percent>=5
RETURN target, p, 'BE5'AS nodeType, 5AS orderWeight
UNION
MATCH p = (self:Company)<-[sr:FinalBenefit]-(target:Person)
WHERE id(self)==-7835036839804393803AND id(target)==-531217911035008506ANDsr.percent>=5
RETURN target, p, 'BP5'AS nodeType, 5AS orderWeight
UNION
MATCH p = (self:Company)<-[sr:Employ]-(target:Person)
WHERE id(self)==-7835036839804393803AND id(target)==-531217911035008506
RETURN target, p, 'DJG'AS nodeType, 7AS orderWeight
UNION
MATCH p = (self:Company)-[sr:Invest]->(target:Company)
WHERE id(self)==-7835036839804393803AND id(target)==-531217911035008506
RETURN target, p, 'HE'AS nodeType, 4AS orderWeight }
WITH target, p, nodeType, orderWeight
RETURN target AS target, collect(p) ASpath, collect(nodeType) AS nodeType, min(orderWeight) AS orderWeight, CASE target.status WHEN 'Yes' THEN 0 WHEN 'No' THEN 0 WHEN '' THEN 0 WHEN 'Yes_1' THEN 1 WHEN 'xx' THEN 1 WHEN 'xxx' THEN 10 WHEN 'xxxx' THEN 10 WHEN '***' THEN 11 WHEN '*' THEN 11 ELSE 8 END AS status ORDER BY status, orderWeight SKIP 0LIMIT100
The text was updated successfully, but these errors were encountered:
as neo4j support below statement, we want to migrate to nebula, could you please support this syntax?
detail according to here https://discuss.nebula-graph.com.cn/t/topic/15776
The text was updated successfully, but these errors were encountered: