RelayとGraphQLを試しています。私がスキーマをやっているとき、私はこれをやっています:
let articleQLO = new GraphQLObjectType({
name: 'Article',
description: 'An article',
fields: () => ({
_id: globalIdField('Article'),
title: {
type: GraphQLString,
description: 'The title of the article',
resolve: (article) => article.getTitle(),
},
author: {
type: userConnection,
description: 'The author of the article',
resolve: (article) => article.getAuthor(),
},
}),
interfaces: [nodeInterface],
})
だから、このような記事を頼むと:
{
article(id: 1) {
id,
title,
author
}
}
データベースに対して 3 つのクエリを実行しますか? つまり、各フィールドには、データベースへのリクエストを行う解決メソッド ( getTitle
、getAuthor
など) があります。私はこれを間違っていますか?
これは例ですgetAuthor
(私はマングースを使用しています):
articleSchema.methods.getAuthor = function(id){
let article = this.model('Article').findOne({_id: id})
return article.author
}