问题标签 [amazon-neptune]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
amazon-web-services - AWS Neptune 上的 Gremlin OLAP 查询
在 AWS Neptune 文档中,它说它与 Apache TinkerPop Gremlin 兼容,但它仅指在线事务处理 (OLTP) 类型的图遍历查询。我还没有看到任何关于长时间运行的在线分析处理 (OLAP) GraphComputer查询的信息。
是否可以对存储在 AWS Neptune 图形数据库服务中的图形执行 OLAP 查询?
python - gremlin python检索ID和标签(valueMap(True))
python g.V('test_red1').valueMap().toList()
工作正常,但是当我将 true 传递给请求 ID 和标签时,我得到了这个错误。有什么我想念的吗?
我是不是错过了什么。我正在使用 AWS 海王星...
我正在添加额外的导入语句
和回溯
graphql - Is gremlin local variable in match?
I am making graphql api server with tinkerpop3 graph database (aws neptune)
for example, I want implementation of graphql below
and I make gremlin query like below
but this query isn't working correctly. because id
of comment is overlap with id
of post.
I want use .as('id')
locally in match statement.
is there any solution?
graph-databases - 如何在一个查询中遍历 gremlin 中的根顶点
我在亚马逊海王星中使用 Gremlin。我有顶点用户,国家,订单
我有从用户到国家的边缘'lives_in',从用户到订单的边缘'购买',从订单到国家的边缘'交付'
目标:找到向外国购买最多订单的最多国家而不是比 live_in country 按降序排列
我无法从步骤 neq(outE("lives_in")) 遍历回到根顶点
删除最后一个 has 步骤后我得到相同的结果
这意味着我的最后一步没有执行。
结果样本 - {v[country_GB]=38,v[country_NZ]=6,v[country_AU]=3}
amazon-neptune - 如何使用 HTTP POST/GET 请求连接/查询 AWS Neptune 实例
我正在尝试通过 Fiddler 使用 Neptune END Point 发送 HTTP Post 请求来连接到 Amazon Neptune 实例。但最终出现超时错误。可以使用 fiddler/Postman 通过 HTTP 请求连接 Neptune 实例吗?
python - 使用前一个边的值
我pip
在 OSX 上使用 Gremlin Python,最新可用的版本是在 AWS Neptune 上托管的数据库。
我想使用来自先前遍历的边缘的值。
示例优于 10 行解释。
我想使用该stop_ts
值(只是一个Int
)并在between
语句中使用它。
目前我只有这样的错误:
我认为不可能使用来自先前遍历的边缘的值,这将是一种耻辱,但我需要确认。
编辑:似乎neq
&eq
不会崩溃,但不会between
, gte
, lte
(正如between
刚刚翻译成gte
and lte
)
amazon-neptune - 在本地测试 Neptune(图 DB)
我已经找到了“请求预览”页面,除此之外还有什么方法可以在本地部署和测试 Neptune?
java - Gremlin 遍历查询语言 - 将查询结果映射到 java 实体
我是 Gremlin 查询语言的新手。任何人都可以提供有关 Gremlin java 实现的好教程吗?我只想从 java 做 CRUD 操作。
1. 创建两个 Person 对象,关系 b/w 他们及其属性并在 AWS Neptune 中持久
化 2. 从数据库中读取两个 person 对象并输出
3. 更新 person 对象属性
4. 删除一个 person 对象
能够成功连接到 Neptune 并执行查询。寻找 java 实体映射查询执行和查看结果。以及 Gremlin 的海王星图的任何可视化表示
gremlin - 如何从 Amazon Neptune 获得与从 Cosmos DB 获得的结果相同的结果?
使用 Gremlin.Net 3.3.2 我从 Neptune 和 Cosmos DB 得到了非常不同的结果。两个平台上的图形数据相同。Cosmos DB 为我提供了我需要的一切(顶点 ID、标签和属性)。
当使用 Gremlin.Net 对 Neptune 进行查询时,我只得到顶点 ID 和标签。这是 Neptune 和 Gremlin.net 的错误吗?海王星的错误?
如果在 gremlin 控制台中执行查询 Neptune 会返回所有数据,那么问题似乎仅限于 Gremlin.Net。
查询 = gV().has('name',within('wind'))