gpt4 book ai didi

javascript - 如何将 API 数据提取到 Graphql 模式

转载 作者:行者123 更新时间:2023-11-30 20:59:07 25 4
gpt4 key购买 nike

我想调用 API,获取 json 数据并将其设置为 Graphql 中的解析器查询。到目前为止,我设法使用 Graphql 服务器并调用了 API。到目前为止,这是我的代码

//resolvers.js
//var fetch = require('node-fetch');
var request = require("request");


var options = { method: 'GET',
url: 'http://mydomain.con/index.php/rest/V1/products/24-MB01',
headers:
{ 'postman-token': 'mytoken',
'cache-control': 'no-cache',
'content-type': 'application/json',
authorization: 'Bearer mytoken' } };

const links = request(options, function (error, response, body) {
if (error) throw new Error(error);
//body = json data
//console.log(body);

});

module.exports = {
Query: {
//set data to Query
allLinks: () => links,
},
};

我不知道如何将包含 json 数据的 body 参数设置为 Query。我在“http://localhost/src/apicall.php”上也有相同的数据,但这不适用于节点获取(或者我犯了错误)。 Api 来自 magento2。

最佳答案

你很接近!

您现在正在做的是在您的应用程序启动时立即发送 links 请求。你不想要那个;您想在 GraphQL 中请求 allLinks 字段时发送请求。

所以您需要在 allLinks 字段中有一个向您的 API 发出请求并返回响应的函数。

如果您在 allLinks 字段中返回一个 Promise,它将等待完成以使用返回值作为答案。

所以,把它们放在一起:

...

const getAllLinks = () => {
return new Promise((resolve, reject) => {
request(options, function (error, response, body) {
if (error) reject(error);
else resolve(body);
});
});
};

module.exports = {
Query: {
//set data to Query
allLinks: getAllLinks,
},
};

关于javascript - 如何将 API 数据提取到 Graphql 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47303419/

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