https://github.com/algolia/gatsby-plugin-algolia
当我运行构建(不填充我的 algolia 索引)时,这个插件似乎在我的 gatsby-config 中不起作用——我已经使用 algoliasearch 和 json 文件将数据推送到我的索引中,但我想要这个每当我构建时自动连接 - 因此数据始终与我的可播放数据保持同步。
我已经通过 github 上的文档(放在我的 gatsby-config.js 文件中)尝试了“gatsby-plugin-algolia”方法
const myQuery = `{
allSitePage {
edges {
node {
# try to find a unique id for each node
# if this field is absent, it's going to
# be inserted by Algolia automatically
# and will be less simple to update etc.
objectID: id
component
path
componentChunkName
jsonName
internal {
type
contentDigest
owner
}
}
}
}
}`;
const queries = [
{
query: myQuery,
transformer: ({ data }) => data.allSitePage.edges.map(({ node }) => node),
indexName: 'cardDemo',
},
];
module.exports = {
plugins: [
{
resolve: 'gatsby-source-airtable-linked',
options: {
apiKey: process.env.MY_API_KEY,
tables: [
{
baseId: process.env.MY_BASE_ID,
tableName: 'Streams',
tableView: 'DO NOT MODIFY',
},
],
},
},
{
resolve: 'gatsby-plugin-algolia',
options: {
appId: process.env.MY_AGOLIA_APP_ID,
apiKey: process.env.MY_AGOLIA_API_KEY,
indexName: 'cardDemo',
queries,
chunkSize: 1000000,
},
},
],
};
我还通过 airtable 在组件上使用了更具体的实例的“myQuery”,如下所示
const myQuery = `{
items: allAirtableLinked(
filter: {
table: { eq: "Items" }
}
) {
edges {
node {
id
data {
title
thumbnail_url
thumbnail_alt_text
url_slug
uberflip_stream_id
uberflip_id
}
}
}
}
}`;
如果有人让这个插件运行和工作——我绝对可以使用一些提示来了解如何让它工作(这个包上没有太多文档)
谢谢你!