gpt4 book ai didi

javascript - Neptune DB 不会将属性值更改为以前的值

转载 作者:行者123 更新时间:2023-12-04 13:06:51 28 4
gpt4 key购买 nike

我在使用 AWS Neptune DB 时遇到了一个非常奇怪的问题。我只能将属性更改为新值,不能使用任何以前的名称。
我正在使用 gremlin 和 node.js。
这听起来很奇怪所以让我添加一些代码:

  const DriverRemoteConnection = gremlin.driver.DriverRemoteConnection;
const dc = new DriverRemoteConnection(process.env.DB_URL, { authenticator, connectOnStartup: false });
await dc.open();
const g = gremlin.process.AnonymousTraversalSource.traversal().withRemote(dc);

await g.V().hasLabel('Wtf').drop().iterate();
await g.addV('Wtf').property('test', 'foo').iterate()
await g.V().hasLabel('Wtf').property('test', 'bar foo').iterate();
await g.V().hasLabel('Wtf').property('test', 'foo').iterate();

const wtf = await g.V().hasLabel('Wtf').elementMap().toList();
console.log(wtf);

所以我想我应该有这样的回应:

  Map(3) {
EnumValue { typeName: 'T', elementName: 'id' } => '7cbdd4d6-9d72-905f-c4b1-0ee9a31db29a',
EnumValue { typeName: 'T', elementName: 'label' } => 'Wtf',
'test' => 'foo'
}

但我有:

  Map(3) {
EnumValue { typeName: 'T', elementName: 'id' } => '7cbdd4d6-9d72-905f-c4b1-0ee9a31db29a',
EnumValue { typeName: 'T', elementName: 'label' } => 'Wtf',
'test' => 'bar foo'
}

有趣的是,如果我使用任何一个词(没有空格)而不是 bar foo 我会得到正确的结果。当我不一个接一个地查询数据库时,我遇到了同样的问题。有人看到这样的问题吗?你知道怎么解决吗?

最佳答案

Neptune 默认使用设置基数。每次添加一个值时,您都会扩展该 Set,因为您没有明确使用 Cardinality.single。此外,elementMap 只会返回 Set 基数属性的一个元素。要查看它们,请改用 valueMap

关于javascript - Neptune DB 不会将属性值更改为以前的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69039151/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com