All Projects β†’ algolia β†’ Gatsby Plugin Algolia

algolia / Gatsby Plugin Algolia

Licence: apache-2.0
A plugin to push to Algolia based on graphQl queries

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gatsby Plugin Algolia

Wp Graphql
πŸš€ GraphQL API for WordPress
Stars: ✭ 3,097 (+1911.04%)
Mutual labels:  graphql, hacktoberfest, gatsby
Docs
Repository of Twilio SendGrid's product documentation.
Stars: ✭ 221 (+43.51%)
Mutual labels:  hacktoberfest, algolia, gatsby
Gatsby Woocommerce Themes
⚑ A Gatsby Theme for WooCommerce E-commerce site Gatsby WooCommerce WordPress
Stars: ✭ 306 (+98.7%)
Mutual labels:  graphql, hacktoberfest, gatsby
Gatsby
Build blazing fast, modern apps and websites with React
Stars: ✭ 51,925 (+33617.53%)
Mutual labels:  graphql, static-site-generator, gatsby
Gatsby Starter Personal Blog
A ready to use, easy to customize, fully equipped GatsbyJS blog starter with 'like app' layout and views transitions.
Stars: ✭ 817 (+430.52%)
Mutual labels:  graphql, algolia, gatsby
Gatsby Starter Foundation
A starter to launch your blazing fast personal website and a blog, Built with Gatsby and Netlify CMS. Made with ❀ by Stackrole
Stars: ✭ 135 (-12.34%)
Mutual labels:  graphql, gatsby
Saleor
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.
Stars: ✭ 14,720 (+9458.44%)
Mutual labels:  graphql, hacktoberfest
Gatsby Starter Try Ghost
Publish flaring fast blogs with Gatsby and Ghost
Stars: ✭ 137 (-11.04%)
Mutual labels:  static-site-generator, gatsby
Gatsby Source Prismic Graphql
Gatsby source plugin for Prismic GraphQL
Stars: ✭ 144 (-6.49%)
Mutual labels:  graphql, gatsby
Gatsby Starter Lumen
A constantly evolving and thoughtful architecture for creating static blogs.
Stars: ✭ 1,797 (+1066.88%)
Mutual labels:  graphql, gatsby
Jigsaw
Simple static sites with Laravel’s Blade.
Stars: ✭ 1,823 (+1083.77%)
Mutual labels:  hacktoberfest, static-site-generator
Docsearch
πŸ“˜ The easiest way to add search to your documentation.
Stars: ✭ 2,266 (+1371.43%)
Mutual labels:  algolia, search
Algoliasearch Magento 2
Algolia Search integration for Magento 2 - compatible with versions from 2.3.x to 2.4.x
Stars: ✭ 131 (-14.94%)
Mutual labels:  algolia, search
Gatsby Blog Starter Kit
A simple starter kit for a static blog created with Gatsby
Stars: ✭ 131 (-14.94%)
Mutual labels:  graphql, gatsby
Algoliasearch Client Python
⚑️ A fully-featured and blazing-fast Python API client to interact with Algolia.
Stars: ✭ 138 (-10.39%)
Mutual labels:  algolia, search
Instantsearch Android
A library of widgets and helpers to build instant-search applications on Android.
Stars: ✭ 129 (-16.23%)
Mutual labels:  algolia, search
Gatsby Plugin Typegen
High-performance TypeScript/Flow code generation for GatsbyJS queries.
Stars: ✭ 144 (-6.49%)
Mutual labels:  hacktoberfest, gatsby
Algoliasearch Client Go
⚑️ A fully-featured and blazing-fast Go API client to interact with Algolia.
Stars: ✭ 147 (-4.55%)
Mutual labels:  algolia, search
Algoliasearch Helper Js
Helper for implementing advanced search features with Algolia
Stars: ✭ 147 (-4.55%)
Mutual labels:  algolia, search
Core
The server component of API Platform: hypermedia and GraphQL APIs in minutes
Stars: ✭ 2,004 (+1201.3%)
Mutual labels:  graphql, hacktoberfest

Gatsby plugin Algolia

This plugin is in beta and not officially supported yet

Feel free to open issues for any questions or ideas

You can specify a list of queries to run and how to transform them into an array of objects to index. When you run gatsby build, it will publish those to Algolia.

Here we have an example with some data that might not be very relevant, but will work with the default configuration of gatsby new

yarn add gatsby-plugin-algolia

First add credentials to a .env file, which you won't commit. If you track this in your file, and especially if the site is open source, you will leak your admin API key. This would mean anyone is able to change anything on your Algolia index.

// .env.production
ALGOLIA_APP_ID=XXX
ALGOLIA_API_KEY=XXX
ALGOLIA_INDEX_NAME=XXX
require('dotenv').config({
  path: `.env.${process.env.NODE_ENV}`,
});

// gatsby-config.js
const myQuery = `{
  pages: allSitePage {
    nodes {
      # 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.pages.nodes, // optional
    indexName: 'index name to target', // overrides main index name, optional
    settings: {
      // optional, any index settings
      // Note: by supplying settings, you will overwrite all existing settings on the index
    },
    matchFields: ['slug', 'modified'], // Array<String> overrides main match fields, optional
  },
];

module.exports = {
  plugins: [
    {
      // This plugin must be placed last in your list of plugins to ensure that it can query all the GraphQL data
      resolve: `gatsby-plugin-algolia`,
      options: {
        appId: process.env.ALGOLIA_APP_ID,
        // Use Admin API key without GATSBY_ prefix, so that the key isn't exposed in the application
        // Tip: use Search API key with GATSBY_ prefix to access the service from within components
        apiKey: process.env.ALGOLIA_API_KEY,
        indexName: process.env.ALGOLIA_INDEX_NAME, // for all queries
        queries,
        chunkSize: 10000, // default: 1000
        settings: {
          // optional, any index settings
          // Note: by supplying settings, you will overwrite all existing settings on the index
        },
        enablePartialUpdates: true, // default: false
        matchFields: ['slug', 'modified'], // Array<String> default: ['modified']
        concurrentQueries: false, // default: true
        skipIndexing: true, // default: false, useful for e.g. preview deploys or local development
      },
    },
  ],
};

The index will be synchronised with the provided index name on Algolia on the build step in Gatsby. This is not done earlier to prevent you going over quota while developing.

Partial Updates

By default all records will be reindexed on every build. To enable only indexing the new, changed and deleted records include the following in the options of the plugin:

  resolve: `gatsby-plugin-algolia`,
  options: {
    /* ... */
    enablePartialUpdates: true,
    /* (optional) Fields to use for comparing if the index object is different from the new one */
    /* By default it uses a field called "modified" which could be a boolean | datetime string */
    matchFields: ['slug', 'modified'], // Array<String> default: ['modified']
  }

This saves a lot of Algolia operations since you don't reindex everything on every build.

Adding matchFields is useful to decide whether an object has been changed since the last time it was indexed. If you save e.g. a timestamp of the record, you can avoid reindexing when it has not changed.

If you have objects which come from another indexing process (wordpress, magento, shopify, custom script...), make sure that they do not have any of the matchFields, so they stay in the index regardless of reindex.

Advanced

You can also specify matchFields per query to check for different fields based on the type of objects you are indexing.

Settings

You can set settings for each index individually (per query), or otherwise it will keep your existing settings.

Replicas

For replica settings, extra care is taken to make sure only apply replicas to non-temporary indices.

If you pass replicaUpdateMode: 'replace' in the index settings, you can choose to update the replicas fully with those in the settings.

If you pass replicaUpdateMode: 'merge' in the index settings, the replica settings will combine the replicas set on your dashboard with the additional ones you set via index settings here.

Concurrent Queries

Sometimes, on limited platforms like Netlify, concurrent queries to the same index can lead to unexpected results or hanging builds. Setting concurrentQueries to false makes it such that queries are run sequentially rather than concurrently, which may solve some concurrent access issues. Be aware that this option may make indexing take longer than it would otherwise.

Transformer

The transformer field accepts a function and optionally you may provide an async function.

Feedback

This is the very first version of our plugin and isn't yet officially supported. Please leave all your feedback in GitHub issues 😊

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].