我正在尝试使用GraphQL和Apollo解析REST查询。
我的休息数据看起来像这样
将基金ID传递给拆分解析器,该解析器返回 - > [Splits array] - >每个分组都有一个donation_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\""
}
]
}
此处的任何帮助表示赞赏。
答案 0 :(得分:2)
看起来您正在使用graphql-tools来创建架构。此错误消息告诉您无法成功构建架构,因为donation
上的Splits
字段需要解析功能。您定义了解析函数,但是将其放在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;
}
},
};