解析graphql

时间:2016-12-28 21:44:35

标签: node.js postgresql express graphql graphql-js

我正在尝试将graphQL添加到现有应用程序中。 我目前使用psql db调用返回Express端点。 我的目标是使用psql访问我的数据,然后在我的graphQL'resolves'中使用这些查询的结果。

以下是我的psql db调用的示例:

'use strict';

const config = require('../../config');
const PostgresDAO = require('core/src/server/db/dao/postgres');
const postgresRW = new PostgresDAO(config.postgresRW);

function getById(id) {
  postgresRW.queryOne(
    `
      SELECT id, email, create_date
      FROM gamesDB.players
      WHERE id = $1;
    `,
    [id],
    function(err, result) {
      console.log(result);
      return result;
    }
  );
}

module.exports = {
  getById: getById
}

这是我的graphQL架构:

'use strict';

const graphql = require('graphql');
const Player = require('./types/player');
const db = require('../db');

const RootQueryType = new graphql.GraphQLObjectType({
  name: 'RootQueryType',
  fields: {
    player: {
      type: Player,
      description: 'The current player identified by an ID.',
      args: {
        key: {
          type: new graphql.GraphQLNonNull(graphql.GraphQLString)
        }
      },
      resolve: (obj, args) => {
        return db.players.getById(args.key);
      }
    }
  }
});

const testSchema = new graphql.GraphQLSchema({
  query: RootQueryType
});

module.exports = testSchema;

问题似乎在于我的决心,因为每次我在graphiql界面中查询玩家时,我都会在我的服务器上正确记录正确的玩家信息,但是graphiql界面中的结果是null。 我在这里做错了什么想法?

1 个答案:

答案 0 :(得分:2)

你需要让Player.getById返回一个包含回调结果的promise。

很可能(完全未经测试的代码):

function getById(id) {
  return new Promise(function(resolve, reject) {
    postgresRW.queryOne(
      `
        SELECT id, email, create_date
        FROM gamesDB.players
        WHERE id = $1;
      `,
      [id],
      function(err, result) {
        if (err) reject(err);
        else resolve(result);
      }
    );
  });
}