尝试将在Gremlin CLI中编写并测试的查询转换为gremlin-python时,我在unexpected token 'as'
表达式上遇到.as('foo')
错误。使用gremlin-python时如何使用Gremlin as
关键字?
答案 0 :(得分:1)
当Gremlin步骤与Python保留字冲突时,该步骤会带有下划线后缀,因此对于as()
,您可以改为as_()
。可以找到所有步骤的完整列表here,但目前它们是:
步骤-and_()
,as_()
,from_()
,is_()
,in_()
,not_()
,{{ 1}},or_()
令牌-with_()