gpt4 book ai didi

graph-databases - Gremlin 得到的结果集包含多个顶点类型和管道的不同阶段

转载 作者:行者123 更新时间:2023-12-03 23:37:47 24 4
gpt4 key购买 nike

我正在尝试获取一个结果集,其中包含 gremlin 管道不同阶段的顶点。例如,考虑以下示例图:

城市 名字=纽约

汽车 模型=特斯拉, 颜色=白色

汽车 型号 = 丰田, 颜色 = 红色

--lives --> City (NY)
--owns --> Car (Tesla)
name = xyz
gender = male

--lives --> City (NY)
--owns --> Car (Toyota)
name = abc
gender = male

--lives --> City (NY)
--owns --> Car (Tesla)
name = def
gender = female

上图,因为它不是很清楚,包含三个顶点的三个人,都链接到一个城市节点和两个不同的汽车节点。

我如何在 gremlin 中编写查询,以返回居住在纽约的男性名单以及他们拥有的汽车。

到目前为止,我有一个管道可以执行此操作:

GremlinPipeline pipe = new GremlinPipeline(graph.getVerticesOfClass("City"));

pipe.has("name", "NY").in("lives").has("gender", "male")

这只返回纽约顶点的男性,但不返回他们的汽车。

以下返回汽车而不是人员。

pipe.has("name", "NY").in("lives").has("gender", "male").out("owns")

有没有一种好的方法可以将这两种顶点类型作为单个查询结果的一部分。这类似于我在 Orient SQL 中使用遍历查询实现的结果。

最佳答案

有多种方法可以做到这一点。如果你真的想将人和车混合在一个列表中,你可以使用商店管道:

list = []
pipe.has("name", "NY").in("lives").has("gender", "male").store(list).out('owns').store(list).iterate()
list

如果您希望维护人与他们的(可能是多辆)汽车之间的关系,那么我建议创建一个人与车的映射:

pipe.has("name", "NY").in("lives").has("gender", "male").groupBy{it.name}{it.out('owns')}.cap()

这是一个完整的类,它使用 Tinkerpop 图在 Java 中实现了所有三种方法。

import com.tinkerpop.blueprints.Graph;
import com.tinkerpop.blueprints.Vertex;
import com.tinkerpop.blueprints.impls.tg.TinkerGraph;
import com.tinkerpop.gremlin.java.GremlinPipeline;
import com.tinkerpop.pipes.util.PipesFunction;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

public class Foo
{
private static final PipesFunction<Vertex, String> NAME_FUNCTION = new PipesFunction<Vertex, String>()
{
@Override
public String compute(Vertex vertex)
{
return vertex.getProperty("name");
}
};
private static final PipesFunction<Vertex, Iterable<String>> OWNS_NAME_FUNCTION = new PipesFunction<Vertex, Iterable<String>>()
{
@Override
public Iterable<String> compute(Vertex vertex)
{
return new GremlinPipeline(vertex).out("owns").property("name");
}
};

public static void main(String[] args)
{
Graph graph = new TinkerGraph();
Vertex boy1 = graph.addVertex(1);
Vertex boy2 = graph.addVertex(2);
Vertex girl = graph.addVertex(3);
Vertex ny = graph.addVertex(4);
Vertex toyota = graph.addVertex(5);
Vertex tesla = graph.addVertex(6);
boy1.setProperty("type", "Person");
boy1.setProperty("name", "xyz");
boy1.setProperty("gender", "male");
boy2.setProperty("type", "Person");
boy2.setProperty("name", "abc");
boy2.setProperty("gender", "male");
girl.setProperty("type", "Person");
girl.setProperty("name", "def");
girl.setProperty("gender", "female");
ny.setProperty("type", "City");
ny.setProperty("name", "NY");
toyota.setProperty("type", "Car");
toyota.setProperty("name", "toyota");
toyota.setProperty("color", "red");
tesla.setProperty("type", "Car");
tesla.setProperty("name", "tesla");
toyota.setProperty("color", "white");
boy1.addEdge("lives", ny);
boy1.addEdge("owns", tesla);
boy2.addEdge("lives", ny);
boy2.addEdge("owns", toyota);
girl.addEdge("lives", ny);
girl.addEdge("owns", tesla);

// Reading a pipe
GremlinPipeline pipe = new GremlinPipeline(graph.getVertices("type", "City"));
pipe = pipe.has("name", "NY").in("lives").has("gender", "male");
for (Object o : pipe)
{
System.out.println(o.toString());
}

// Reading a list
List list = new ArrayList();
pipe = new GremlinPipeline(graph.getVertices("type", "City"));
pipe.has("name", "NY").in("lives").has("gender", "male").store(list, NAME_FUNCTION).out("owns").store(list, NAME_FUNCTION).iterate();
System.out.println(list);

// Reading a map
pipe = new GremlinPipeline(graph.getVertices("type", "City"));
Map map = (Map) pipe.has("name", "NY").in("lives").has("gender", "male").groupBy(NAME_FUNCTION, OWNS_NAME_FUNCTION).cap().next();
System.out.println(map);
}
}

关于graph-databases - Gremlin 得到的结果集包含多个顶点类型和管道的不同阶段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24292814/

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