gpt4 book ai didi

json - 在 Gatsby 中使用 graphQL 查询多个 JSON 文件

转载 作者:行者123 更新时间:2023-12-04 15:51:08 25 4
gpt4 key购买 nike

我正在尝试查询放在 src/data 目录中的两个 JSON 文件。我安装了 gatsby-transformer-json 并将目录添加为源。

{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/data/`
}
}

然后我尝试了几种方法来构建 graphql 查询,但我只能成功查询我创建的第一个 json 文件 work_experiences.json 虽然我的第二个文件 skills. json 具有完全相同的结构

{
"work_experiences": [
{
"body": "lorem ipsum",
"title": "lorem ipsum",
"role": "lorem",
"dateBegin": "2015-10-01",
"dateEnd": "2016-07-03",
"companyUrl": "http://www.lorem.com",
"workUrl": "/lorem/ipsum/"
},
...

对 skills.json 的查询总是返回 null enter image description here enter image description here

有没有办法查询这两个文件,还是我必须将所有内容合并到一个 data.json 文件中?

最佳答案

如果您在同一根文件夹中有 2 个文件并进行查询,您将仅从单个节点获取数据,因为 dataJson 查询到单个文件。

或者你像这样使用allDataJson:

{
allDataJson{
edges{
node{
work_experiences{
title
}
skills{
name
}
}
}
}
}

在这种情况下,一个好的解决方案是将您的单对象 json 文件存储在单独的文件夹中,每个文件夹只有一个 json。

例如,您有一些 Users 数据:

  • 在您的 src/data 中创建一个 User 文件夹。
  • 使用 { "name": "blabla"} 创建一个 index.json 文件。
  • 查询您的数据。

像这样:

{
userJson{
name
}
}

关于json - 在 Gatsby 中使用 graphQL 查询多个 JSON 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53829238/

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