gpt4 book ai didi

javascript - 当我通过 graphiql 发送查询时,graphql JS 返回 null

转载 作者:行者123 更新时间:2023-11-29 15:12:49 24 4
gpt4 key购买 nike

我想我已经彻底检查了这段代码,但找不到错误请帮忙!!查询 id 时返回 null

此外,vscode 告诉我我的父级在解析函数中没有使用。我在这里做错了什么??

express ---

const express = require('express');
const graphqlHTTP = require('express-graphql');
const schema = require('./schema/schema')

const app = express();

app.use('/graphql', graphqlHTTP({

schema,
graphiql:true

}));


app.listen(1991, ()=> {
console.log('1991 live');
});

架构--

const graphql = require('graphql');
const _= require('lodash');

const { GraphQLObjectType, GraphQLString, GraphQLID, GraphQLInt,
GraphQLSchema } = graphql;

var drugs = [

{name: 'Paracetamol', price: 200, qty: 20, drugid: 1},
{name: 'Amoxicilin', price: 700, qty: 10, drugid: 2}

];

var categories = [

{name: 'Painkiller', id: 1},
{name: 'Anti-Biotic', id: 2}

];


const DrugType = new GraphQLObjectType({

name: 'Drug',
fields: () => ({
name: {type: GraphQLString},
price: {type: GraphQLInt},
qty: {type: GraphQLInt},
drugid: {type: GraphQLID}
})

});

const DrugCategory = new GraphQLObjectType({

name: 'Category',
fields: () => ({
name: {type: GraphQLString},
id: {type: GraphQLID}
})

});

const RootQuery = new GraphQLObjectType({

name: 'RootQueryType',
fields: {
drug:{
type: DrugType,
args:{id:{type: GraphQLID}},
resolve(parent, args){
return _.find(drugs, {drugid:args.id});

}
},

category:{
type: DrugCategory,
args:{id: {type: GraphQLID}},
resolve(parent,args){
return _.find(categories, {id:args.id});
}
}
}

});

module.exports = new GraphQLSchema({
query: RootQuery
});

这是我在 graphiql 中查询时得到的结果

查询--

 {
drug(id: 1){
name
}

结果--

{
"data": {
"drug": null
}
}

最佳答案

您传递给 lodash 的 find 方法的对象是 { id: args.id } —— 这意味着您正在寻找一个带有 id 匹配 args.id 的属性。但是,drugs 数组中的所有对象都没有 id 属性。更新您的数组或更改您的搜索条件(即 { drugid: args.id })。

此外,id 参数的类型是 GraphQLID,它被视为字符串。这意味着 find 正在将 String 参数与 Number 属性值进行比较。将参数的类型更改为 GraphQLIntNumber.parseInt 包裹 args.iddrugId 值更改为字符串。

关于javascript - 当我通过 graphiql 发送查询时,graphql JS 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52625678/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com