Airtable 未在 GraphQL 中显示

发布于 2025-01-09 21:19:50 字数 723 浏览 1 评论 0原文

今天我尝试在 GraphQL 中使用 Airtable,但是它没有在 graphql 中显示。 我用yarn添加了包,然后用下面的代码更新了gatsby-config文件:

   
  require("dotenv").config({
  path: `.env.${process.env.NODE_ENV}`,
})

  
  module.exports = {
   {
   plugins: [
      resolve: `gatsby-source-airtable`,
      options: {
        apiKey: process.env.GATSBY_AIRTABLE_API,
        concurrency: 5,
        tables: [
          {
            baseId: process.env.GATSBY_AIRTABLE_BASE_ID,
            tableName: `Projects`,
            mapping: {image:`fileNode`}
          }
        ]
      }
    ],
 }

最重要的是,我清理了 gatsby 缓存并使用 sudo 命令启动了 gatsby 开发。仍然 allAirtable 没有显示在 graphiQL 中

today I tried to use Airtable in GraphQL, however, it does not show in graphql.
I added the package with yarn, then I updated the gatsby-config file with the code below:

   
  require("dotenv").config({
  path: `.env.${process.env.NODE_ENV}`,
})

  
  module.exports = {
   {
   plugins: [
      resolve: `gatsby-source-airtable`,
      options: {
        apiKey: process.env.GATSBY_AIRTABLE_API,
        concurrency: 5,
        tables: [
          {
            baseId: process.env.GATSBY_AIRTABLE_BASE_ID,
            tableName: `Projects`,
            mapping: {image:`fileNode`}
          }
        ]
      }
    ],
 }

On top of that I cleaned gatsby cache and started gatsby develop with sudo command. Still allAirtable is not showing in the graphiQL ????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文