我使用 node
v16.0.0、Gatsby
v3.6.1和Yarn
v1.22.10作为带有插件的依赖管理器:
- gatsby-source-apiserver v2.1.8。
- gatsby-plugin-image v1.4.0。
我在文件中使用了以下函数gatsby-node.js
在 GraphQL 中创建节点,其中包含稍后可以查询的图像:
// gatsby-node.js
const { createRemoteFileNode } = module.require(`gatsby-source-filesystem`)
exports.onCreateNode = async ({ node,
actions: { createNode },
store,
cache,
createNodeId,
}) => {
if (node.internal.type === `API__images` && node.pk) {
let fileNode = await createRemoteFileNode({
url: node.url, // string that points to the URL of the image
parentNodeId: node.id, // id of the parent node of the fileNode you are going to create
createNode, // helper function in gatsby-node to generate the node
createNodeId, // helper function in gatsby-node to generate the node
cache, // Gatsby's cache
store, // Gatsby's Redux store
})
// if the file was created, attach the new node to the parent node
if (fileNode) {
node.image___NODE = fileNode.id
}
}
}
这似乎在运行时正常工作,gatsby develop
或者gatsby build
如果我尝试再次运行任何这些命令(使用相同的源数据),则会引发以下错误:
Missing onError handler for invocation 'building-schema',
error was Invariant Violation: Encountered an error
trying to infer a GraphQL type for: `image___NODE`.
There is no corresponding node with the `id` field matching:
"27564a59-be49-51fb-98d6-c32de4f2030c",
"379357c0-1faa-5177-806d-7f155f2e3e85",
...
那些27564a59-b..
,379357c0-1..
是在gatsby-node.js
函数上创建的图像节点 ID 。
如果我运行gatsby clean
它会正常工作,但使用 gatsby clean 不是一个好的解决方案,因为清理缓存会破坏增量构建。
有人知道如何解决这个错误吗?我应该为节点使用固定 ID 吗?
追溯错误:
(/my-project/node_modules/invariant/invariant.js:40:15)
at getFieldConfigFromFieldNameConvention (/my-project/node_modules
/gatsby/src/schema/infer/add-inferred-fields.js:227:3)
at getFieldConfig (/my-project/node_modules/gatsby/src/schema/infe
r/add-inferred-fields.js:129:19)
at forEach (/my-project/node_modules/gatsby/src/schema/infer/add-i
nferred-fields.js:79:25)
at Array.forEach (<anonymous>)
at addInferredFieldsImpl (/my-project/node_modules/gatsby/src/sche
ma/infer/add-inferred-fields.js:63:28)
at addInferredFields (/my-project/node_modules/gatsby/src/schema/i
nfer/add-inferred-fields.js:27:3)
at addInferredType
(/my-project/node_modules/gatsby/src/schema/infer/index.js:101:3)
at map
(/my-project/node_modules/gatsby/src/schema/infer/index.js:65:5)
at Array.map (<anonymous>)
at addInferredTypes
(/my-project/node_modules/gatsby/src/schema/infer/index.js:64:23)
at updateSchemaComposer
(/my-project/node_modules/gatsby/src/schema/schema.js:169:9)
at buildSchema
(/my-project/node_modules/gatsby/src/schema/schema.js:64:3)
at build
(/my-project/node_modules/gatsby/src/schema/index.js:105:18)
at buildSchema
(/my-project/node_modules/gatsby/src/services/build-schema.ts:19:3)'