在向graphql / idl端点发送错误的架构后,我无法连接到我的graphql端点。我试过重新启动neo4j服务器,但没有运气。有没有人遇到这个问题,可以提供帮助,还是我必须全新安装?error when I try to call graphql.schema() on the neo4j browser
答案 0 :(得分:0)
创建或重新创建有效的架构:
CALL graphql.idl('
type Movie {
title: String!
released: Int
actors: [Person] @relation(name:"ACTED_IN",direction:IN)
}
type Person {
name: String!
born: Int
movies: [Movie] @relation(name:"ACTED_IN")
}
')
然后创建自己的架构。
适合我。 希望这有帮助。