如何在GremlinPython中使用“neq”?

2024-09-30 10:36:36 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个从Gremlin控制台工作的Gremlin查询

g.V("p1").as("this").out("ContributedTo").in("ContributedTo").where(neq("this")).groupCount()

我想从Python脚本中使用它

^{pr2}$

我得到一个错误

AttributeError: type object '__' has no attribute 'neq'

我应该如何用Python来表达Gremlin'neq?在


Tags: in脚本astype错误outthiswhere
1条回答
网友
1楼 · 发布于 2024-09-30 10:36:36

neqP类的一部分,因此我应该导入它并使用它

from __future__  import print_function  # Python 2/3 compatibility

from gremlin_python import statics
from gremlin_python.structure.graph import Graph
from gremlin_python.process.graph_traversal import __
from gremlin_python.process.traversal import P

from gremlin_python.driver.driver_remote_connection import DriverRemoteConnection

graph = Graph()
g = graph.traversal().withRemote(DriverRemoteConnection('wss://neptunedbcluster.neptune.amazonaws.com:8182/gremlin','g'))

g.V('p1').as_('this').out('ContributedTo').in_('ContributedTo').where(P.neq('this')).groupCount()

相关问题 更多 >

    热门问题