我正在尝试扩展自动生成的 graphql 模式neo4j-graphql-js
这是我的 graphql 架构
类型定义
type Person {
_id: Long!
addresslocation: Point!
confirmedtime: DateTime!
healthstatus: String!
id: String!
name: String!
performs_visit: [Visit] @relation(name: "PERFORMS_VISIT", direction: OUT)
visits: [Place] @relation(name: "VISITS", direction: OUT)
VISITS_rel: [VISITS]
}
type Place {
_id: Long!
homelocation: Point!
id: String!
name: String!
type: String!
part_of: [Region] @relation(name: "PART_OF", direction: OUT)
visits: [Visit] @relation(name: "LOCATED_AT", direction: IN)
persons: [Person] @relation(name: "VISITS", direction: IN)
}
type Visit {
_id: Long!
duration: String!
endtime: DateTime!
id: String!
starttime: DateTime!
located_at: [Place] @relation(name: "LOCATED_AT", direction: OUT)
persons: [Person] @relation(name: "PERFORMS_VISIT", direction: IN)
}
type Region {
_id: Long!
name: String!
places: [Place] @relation(name: "PART_OF", direction: IN)
}
type Country {
_id: Long!
name: String!
}
type Continent {
_id: Long!
name: String!
}
type VISITS @relation(name: "VISITS") {
from: Person!
to: Place!
duration: String!
endtime: DateTime!
id: String!
starttime: DateTime!
}
现在我扩展了Person以执行自定义查询,为了做到这一点,我正在使用@cypher
指令
类型定义2
type Person {
potentialSick: [Person] @cypher(statement: """
MATCH (p:this)--(v1:Visit)--(pl:Place)--(v2:Visit)--(p2:Person {healthstatus:"Healthy"})
return *
""")
}
我通过合并两个 typeDefs 创建模式,它按预期工作
export const schema = makeAugmentedSchema({
typeDefs: mergeTypeDefs([typeDefs, typeDefs2]),
config: {
debug: true,
},
});
问题
是否可以从我的自定义查询中返回自定义类型(在 graphql 中映射)potentialSick
?
我的目标是返回与此类似的类型
type PotentialSick {
id: ID
name: String
overlapPlaces: [Place]
}
pl
在我的 neo4j 查询中,重叠的地方在哪里
MATCH (p:this)--(v1:Visit)--(pl:Place)--(v2:Visit)--(p2:Person {healthstatus:"Healthy"})