I would like to inquire about the multiple Cypher statement

I have a need to know one entity and two relationships, first get the other entity through one entity and one relationship, and then get the final answer through the obtained entity and the other relationship. (我有一个需求,就是知道一个实体和两个关系,首先通过一个实体一个关系得到另一个实体,然后通过得到的这个实体和另外一个关系去得到最后的答案)


This is my single-hop search statement I want to get a multi-hop statement similar to his (这个是我单跳的搜寻语句我想获得与他类似的多跳语句)
MATCH(p:疾病)-[r:desc]->(q:定义) WHERE p.name='{Disease}' RETURN q.name