ノードサーバーで以下のコードを実行すると。graphql-JS が「product.productTax」フィールドを解決できないというエラーが表示されます。
graphql-express のビジュアル スタジオ コードを使用して、http://graphql.org/graphql-js/object-types/ の次のコードを正確に模倣しようとしました。
<!-- language: lang-js -->
var express = require('express');
var graphqlHTTP = require('express-graphql');
var { buildSchema } = require('graphql');
// Construct a schema, using GraphQL schema language
var schema = buildSchema(`
type Product{
product_id: Int!
sku: String
short_nm: String
retl_price: Float!
productTax(tax_rate: Float!): [Float!]
}
type Query {
getproduct(product_id: Int, sku: String, short_nm: String, retl_price: Float): Product
}
`);
// This class implements the Product GraphQL type
class Product {
constructor(product_id, sku, short_nm, retl_price) {
this.product_id = product_id;
this.sku = sku;
this.short_nm = short_nm;
this.retl_price = retl_price;
}
productTax({tax_rate}){
return this.retl_price * tax_rate / 100;
}
}
// The root provides the top-level API endpoints
var root = {
getproduct: function ({product_id, sku, short_nm, retl_price}) {
return new Product(product_id, sku, short_nm, retl_price);
}
}
var app = express();
app.use('/graphql', graphqlHTTP({
schema: schema,
rootValue: root,
graphiql: true,
}));
app.listen(4000);
console.log('Running a GraphQL API server at localhost:4000/graphql');