- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
python g.V('test_red1').valueMap().toList()
工作正常,但是当我将 true 传递给请求 id 和标签时,我收到此错误。有什么我想念的吗?
g.V('test_red1').valueMap(True).toList()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/ec2-user/environment/merchantGraph/gremlin_python/process/traversal.py", line 52, in toList
return list(iter(self))
File "/home/ec2-user/environment/merchantGraph/gremlin_python/process/traversal.py", line 43, in __next__
...
我是不是漏掉了什么。我正在使用 AWS Neptune ...
我正在添加额外的导入语句
和回溯
import time
import requests
import json
from gremlin_python import statics
from gremlin_python.structure.graph import Graph
from gremlin_python.process.graph_traversal import __
from gremlin_python.process.strategies import *
from gremlin_python.driver.driver_remote_connection import DriverRemoteConnection
import boto3
from os import environ
graph = Graph()
g = graph.traversal().withRemote(DriverRemoteConnection(environ['gremlinNeptuneConnection'],'g'))
# this works
g.V('test_red1').valueMap().toList()
# this fails
g.V('test_red1').valueMap(True).toList()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/ec2-user/environment/merchantGraph/gremlin_python/process/traversal.py", line 52, in toList
return list(iter(self))
....
File "/home/ec2-user/environment/merchantGraph/gremlin_python/structure/io/graphsonV3d0.py", line 455, in objectify
new_dict[reader.toObject(l[x])] = reader.toObject(l[x + 1])
TypeError: unhashable type: 'dict'
最佳答案
我的猜测是您遇到了最近报告的 valueMap(true)
错误的麻烦:
https://issues.apache.org/jira/browse/TINKERPOP-1860
它已打补丁,将在 3.3.2 版本中修复。在那之前你将不得不解决这个问题,因为除了恢复到 GraphSON 2.0(它有自己的一系列缺点)之外真的没有解决办法。一种解决方法是 project()
您的结果:
gremlin> g.V().project('props','id','label').
......1> by(valueMap()).
......2> by(id).
......3> by(label)
==>[props:[name:[marko],age:[29]],id:1,label:person]
==>[props:[name:[vadas],age:[27]],id:2,label:person]
==>[props:[name:[lop],lang:[java]],id:3,label:software]
==>[props:[name:[josh],age:[32]],id:4,label:person]
==>[props:[name:[ripple],lang:[java]],id:5,label:software]
==>[props:[name:[peter],age:[35]],id:6,label:person]
关于python - gremlin python 检索 id 和标签 (valueMap(True)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48350862/
我有一个非常简单的脚本,它只需通过 ValueMap 访问资源属性。除了某些原因之外,在 if 语句开始时我不断收到意外 token 错误。这一定是我忽略的事情。 public class heade
我还是 SmartGWT 的新手,目前遇到一个奇怪的问题.. 我使用的是 Windows XP 和 SmartGWT 版本 3.0,GWT SDK 2.4.0(使用 Eclipse IDE)。 所以我
我是使用图数据库的初学者。据我所知,valueMap()返回特定顶点的属性数组。但是在tinkerpop文档中,我发现了另一种方法,例如mapsValue()。请我知道其中的区别。提前致谢。 最佳答案
我在 nodejs 上使用 es6,并尝试在 gremlin 查询中执行 project() 步骤。 作为投影的一部分,我想提取属性。 使用 gremlin 控制台我会使用 valueMap() 来获
我正在将图表中的所有值提取到一个名为节点的列表中: nodes = g.V().valueMap(True).toList() 对于每个节点,我想获取 id,但我不知道如何获取。例如。我有一个名为 '
小问题: 如何将jobject转换为cocos2d::ValueMap? 详细问题: 我有 Java 部分: public class MyCallback implements MyListener
python g.V('test_red1').valueMap().toList() 工作正常,但是当我将 true 传递给请求 id 和标签时,我收到此错误。有什么我想念的吗? g.V('test
假设我有两种类型的顶点, parent 和 child 。我希望能够查询所有父顶点并将所有子节点按其关联的父节点以及每个子节点的属性分组。假设 parent 有多个 child ,而 child 只能
我发现Valuemap是方法。该值不支持指针。但是我写那些代码不会出错: Sprite* spriteBg = .....; Valuemap dic; dic["abc"] = spriteBg;
我正在学习这个关于在我的游戏中实现 tilemaps 的精彩教程 http://www.raywenderlich.com/39113/cocos2d-x-tile-map-tutorial-part
GraphTraversal> tsList = traversalSource.V().has("request","id_key",114).valueMap(); while(ts
我是一名优秀的程序员,十分优秀!