Skip to content

The plugin is not working for me, please help. #2

@sanky72

Description

@sanky72

When I run gatsby develop after doing the steps mentioned for gatsby-config.js. I get this error - Error in "gatsbyRepo/my-wordpress-gatsby-site/node_modules/@xebiastud io/gatsby-source-graphql-multiple/gatsby-node.js": Body must be a string. Received: undefined., with this warning before the error - Plugin @xebiastudio/gatsby-source-graphql-multiple is not compatible with your gatsby version 3.3.0 - It requires gatsby@^2.0.15

My gatsby-config.js looks like this -

/**

*/

module.exports = {
/**

  • Adding plugins to this array adds them to your Gatsby site.
  • Gatsby has a rich ecosystem of plugins.
  • If you need any more you can search here: https://www.gatsbyjs.com/plugins/
    /
    plugins: [
    {
    resolve: @xebiastudio/gatsby-source-graphql-multiple,
    options: {
    typeName: MyCombinedSource,
    fieldName: myCombinedSource,
    // The paramName will create a query parameter on myCombinedSource that determines which source to use
    // As an example, let's imagine that each source contains content in a specific language
    paramName: language,
    sources: [
    {
    key: en,
    url: example.com/en/graphql
    },
    {
    key: fr,
    url: example.com/fr/graphql
    }
    ]
    }
    },
    {
    /
    * */
    resolve: gatsby-source-wordpress,
    options: {
    // the only required plugin option for WordPress is the GraphQL url.
    url:
    process.env.WPGRAPHQL_URL || 'http://localhost:8888/cmsProject/sitetwo/graphql' ||
    https://wpgatsbydemo.wpengine.com/graphql,
    },
    },
/**
 * We need this plugin so that it adds the "File.publicURL" to our site
 * It will allow us to access static url's for assets like PDF's
 *
 * See https://www.gatsbyjs.org/packages/gatsby-source-filesystem/ for more info
 */
{
  resolve: `gatsby-source-filesystem`,
  options: {
    name: `assets`,
    path: `${__dirname}/content/assets`,
  },
},

/**
 * The following two plugins are required if you want to use Gatsby image
 * See https://www.gatsbyjs.com/docs/gatsby-image/#setting-up-gatsby-image
 * if you're curious about it.
 */
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,

{
  // See https://www.gatsbyjs.com/plugins/gatsby-plugin-manifest/?=gatsby-plugin-manifest
  resolve: `gatsby-plugin-manifest`,
  options: {
    name: `Gatsby Starter WordPress Blog`,
    short_name: `GatsbyJS & WP`,
    start_url: `/`,
    background_color: `#ffffff`,
    theme_color: `#663399`,
    display: `minimal-ui`,
    icon: `content/assets/gatsby-icon.png`,
  },
},

// See https://www.gatsbyjs.com/plugins/gatsby-plugin-react-helmet/?=gatsby-plugin-react-helmet
`gatsby-plugin-react-helmet`,

/**
 * this (optional) plugin enables Progressive Web App + Offline functionality
 * To learn more, visit: https://gatsby.dev/offline
 */
// `gatsby-plugin-offline`,

],
}

My gatsby version is - "gatsby": "^3.3.0".

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions