我有下面提到的数据集
g.addV('testvertex').property(id, 'user1').property(set, 'states','TX').property(set,'states','CA').property(set,'states','AL').property(set,'states','AK')
如果‘
发布于 2022-03-23 22:06:07
我怎么能找到“user1”所居住的州数?
g.V().values('states').count()if 'user1‘曾在'IA’和'KS‘中生活过吗?
g.V().has(id,'user1').has('states', within('IA','KS'))如何从状态集中删除“TX”?
g.V().has(id,'user1').
properties('states').hasValue('TX').drop()https://stackoverflow.com/questions/71594293
复制相似问题