可能我在这里错了。根据我的理解,我期望以下查询显示图形的边缘和连接。
基本上我执行了以下查询
g.addV('tweet').property('id', '1119682736678162432').property('text', 'RT Researcher Hijacks a Microsoft Service Using Loophole in Azure Cloud. #BigData #Analytics #DataScience #CyberSecurity #IoT…').property('language', 'en').property('tweetedby', 'megamindAI')
然后我将主题标签添加为边缘,
g.V('1119682736678162432').addE('comes_hashtag').to(g.V('Analytics'))
g.V('1119682736678162432').addE('comes_hashtag').to(g.V('DataScience'))
我以以下方式执行查询
g.V('1119682736678162432')
它仅显示顶点,但不显示顶点Analytics(分析)和DataScience,我是否必须手动创建其他两个顶点?