Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Gatsby

Plugin for tideSoftware-CMS to graphQl

🚀 Quick start

To install the plugin choose the correct version:

v1 = for gatsby v3 support

npm i @qite/gatsby-source-tide@latest-v1

or v2 = for gatsby v5 support

npm i @qite/gatsby-source-tide@latest-v2

Then add the package to your gatsby.config file. In this example we use the cross-env package, but this can also be hardcoded.

    {
      resolve: `@qite/gatsby-source-tide`,
      options: {
        host: [process.env.GATSBY_TIDE_HOST],
        apiKey: [process.env.GATSBY_TIDE_API_KEY],
        isPreview: false,
        ignoreSslErrors: true,
      },
    },

Now when running gatsby-develop the Tide-cms will be read and added to graphQl in your project.

All template from Tide CMS will exist with a prefix of TideItemFor…

© 2026 Gatsby, Inc.