GraphiQL返回' null'查询

时间:2017-09-10 02:41:35

标签: javascript neo4j graphql graphql-js graphiql

我实际上正在使用Neo4j数据库并使用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..correctly但它显示的成员字段' 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
                    })
                })
        },

1 个答案:

答案 0 :(得分:2)

无论您的解析器返回什么,都必须是模式定义的正确类型。如果返回错误的类型(数字而不是字符串),GraphQL可能会尝试将其强制转换为正确的类型,但在大多数情况下,它只会返回null。

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

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

您需要使用toObject方法或以其他方式将记录转换为对象,其字段与您在Group的架构中指定的字段相匹配。