Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Gatsby

gatsby-source-eventzilla

This module helps you pull data from your Eventzilla account. I had a couple issues using one of the competitors (for which there are many source plugins) and moved to Eventzilla. This plugin makes all of your events available in graphql. This only works for events, none of the other api endpoints.

To install:

yarn add gatsby-source-eventzilla

(or npm install --save gatsby-source-eventzilla)

Then add the config to your gatsby-config.js:

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-eventzilla',
      options: {
        typeName: '<INPUT_GRAPHQL_TYPE_NAME_HERE>',
        apiKey: '<PUT_EVENTZILLA_API_KEY_HERE>', 
      }
    },
  ],
};

EVENTZILLA CREDENTIALS

© 2023 Gatsby, Inc.