I am using node and graphql to get value (array of string) of a specific key. Following is the schema which is being used
var schema = buildSchema(`
type Query {
keyValue(id: String!): KeyValue
},
type KeyValue {
value: [String]
}
`);
var tempArray = [{
id:"1",
value: ["ABC", "CDE", "1JUU", "CDE"]
},{
id:"2",
value: ["ABC", "CDE", "2JUU", "CDE"]
}];
var keyValueData = (args) => {
var id = args.id;
var result = null;
for (let key of tempArray) {
if (key.id === id) {
result = key.value;
break;
}
}
console.log(result); // I see the result in the console as ["ABC", "CDE", "1JUU", "CDE"] when I send id as 1 from client
return result;
}
var root = {
keyValue: keyValueData
};
var app = express();
app.use('/graphql', express_graphql({
schema: schema,
rootValue: root,
graphiql: true
}));
app.listen(4010, () => console.log('Running On localhost:4010/graphql'));
From Client I am sending:
{
keyValue(id: "1") {
value
}
}
but it gives null always
{
"data": {
"keyValue": {
"value": null
}
}
}
Can anybody help me what I am missing here or doing wrong.