1

我正在尝试使用 GraphQL 和 Apollo 解决 REST 查询。

我的休息数据看起来像这样

将基金 ID 传递给一个拆分解析器,它返回一个 -> [拆分数组] -> 每个拆分都有一个捐赠 ID -> 我想使用该 ID 从单独的休息端点获取 {donation} 对象

这是我的架构

export const schema = [`

schema {
  query: RootQuery
}

type RootQuery {
  Splits(id: Int!): [Splits]
}

type Splits {
    amount_in_cents:Int
    donation_id:Int
    fund_id:Int
    id:Int
    memo:String
    donation(donation_id: Int): Donation
}

type Donation {
  amount_in_cents: Int
  bank_name: String
}
`];

这是我的解析器文件

import rp from 'request-promise';

const DTBaseURL = 'https://restendpointdomainhere.com/';
const getFromDT = (getQuery) => {
  const data = rp( DTBaseURL + getQuery, {
    'auth': {
      "user": Meteor.settings.endpoint.user,
      "pass": Meteor.settings.endpoint.pass,
    }
  } )
    .then( ( res ) => JSON.parse( res ) )
    .then((res) =>{
      return res;
    });
  return data;
};



export default resolveFunctions = {
  RootQuery: {
    Splits( root, args, context ){
      let newValue = [];
      const getQuery = 'funds/' + args.id + '/splits.json';

      const data = getFromDT(getQuery)
        .then( ( res ) => {
          res.forEach( function ( donationSplit ) {
            newValue.push( donationSplit.split );
          } );
          return newValue;
        } );

      return data;
    },
    donation( root, args, context ){
      console.log( args );
      const getQuery = 'donations/' + args.donation_id + '.json';

      const data = getFromDT(getQuery)
        .then((res) => {
          return res.donation;
        });
      return data;
    }
  }
};

我所做的任何查询@ /graphql 都会收到此错误消息。

{
  "errors": [
    {
      "message": "Resolve function missing for \"Splits.donation\""
    }
  ]
}

任何帮助在这里表示赞赏。

4

1 回答 1

2

看起来您正在使用 graphql-tools 来创建您的架构。此错误消息告诉您无法成功构建架构,因为donation字段 onSplits需要解析功能。你定义了 resolve 函数,但是你把它放在里面RootQuery而不是Splits它所属的地方:

export default resolveFunctions = {
  RootQuery: {
    Splits( root, args, context ){
      let newValue = [];
      const getQuery = 'funds/' + args.id + '/splits.json';

      const data = getFromDT(getQuery)
        .then( ( res ) => {
          res.forEach( function ( donationSplit ) {
            newValue.push( donationSplit.split );
          } );
          return newValue;
        } );

      return data;
    },
  },
  Splits: { // <<---- you forgot this ------
    donation( root, args, context ){
      console.log( args );
      const getQuery = 'donations/' + args.donation_id + '.json';

      const data = getFromDT(getQuery)
        .then((res) => {
          return res.donation;
        });
      return data;
    }
  },
};
于 2016-09-02T19:23:49.540 回答