This question already has answers here:
Why does a GraphQL query return null?
                                
                                    (3个答案)
                                
                        
                在11个月前关闭。
            
        

我实际上正在使用Neo4j DB并使用neo4j_movie_recommendations代码中的示例对GraphQL和GraphiQL进行实验。我有一个非常奇怪的问题,似乎与javascript相关或与GraphQL相关。我做了一个简单的查询,虽然我可以看到解析器可以返回数据(使用console.log),但是GraphQL返回的是'null'值。以下是代码段:

const resolveFunctions = {
    Query: {
        allVoters(_, params) {
            let session = driver.session();
            let query = "MATCH (voter:Voter) RETURN voter;"
            return session.run(query, params)
                .then(result => {
                    return result.records.map(record => {
                        console.log("Voter: " + JSON.stringify(record))
                        return record.get("voter").properties
                    })
                })
        },

    },
    Voter: {
        memberOf(voter) {
            let session = driver.session(),
                params = { voterid: voter.voterid },
                query = `
                        MATCH (v:Voter)-[:MEMBER_OF]->(g:Group)
                        WHERE v.voterid = $voterid
                        RETURN g.name AS groupname;
                        `
            return session
                .run(query, params)
                .then(result => {
                    return result.records.map(record => {
                        console.log("Group Name " + record.get("groupname"))
                        return record.get("groupname")
                    })
                })
        },


console.log显示正确的值,但是GraphiQL正确显示名称email ..,但memberof字段显示为“ null”。有人可以在这里看到我做错了吗?

这是架构...

export default `
type Voter {
  voterid     : String!
  email       : String!
  name        : String!
  nickname    : [String]
  address     : String
  altAddress  : String
  dob         : String
  profession  : String
  telephone   : String
  gender      : String
  skills      : [String]
  votesIn     : PD
  livesIn     : PD
  memberOf    : [Group]
}
type Group {
  name        : String
  location    : String
  created     : String
  partof      : Division
}
type PD {
  number      : String
  location    : String
  created     : String
  description : String
  partof      : Division
}
type Division {
  name        : String
  created     : String
  belongsto   : Constituency
 }
 type Constituency {
  name        : String
  created     : String
  reportsto   : Region
 }
 type Region {
  name        : String
  created     : String
  reportsto   : Exec
 }
 type Exec {
  name        : String
  created     : String
 }

type Query {
  allVoters: [Voter]!
  getVoter(voterid: String!): Voter
  }

  schema {
    query: Query
  }
`;


编辑...添加解析器
getvoter的解析器代码:

  getVoter(_, params) {
            let session = driver.session();
            let query = "MATCH (voter:Voter {voterid: $voterid}) RETURN voter;"
            return session.run(query, params)
                .then(result => {
                    return result.records.map(record => {
                        return record.get("voter").properties
                    })
                })
        },

最佳答案

解析程序返回的任何内容都必须是架构定义的正确类型。如果返回错误的类型(数字而不是字符串),则GraphQL可能会尝试将其强制转换为正确的类型,但是在大多数情况下,它将仅返回null。

您的memberOf字段应该是Group对象的数组。但是,在您的解析器中,看起来好像您返回的是字符串数组:

return result.records.map(record => {
  return record.get("groupname")
})


您将需要利用toObject方法,或者将记录转换为对象,且其字段与在模式中为Group指定的字段匹配。

10-06 14:02
查看更多