I am working on a project suddenly i am facing this error, Few hours before this is working fine but now i am facing the this error => [ERROR #gatsby-source-wordpress_111002]. I searched alot and did everything i found but nothing is working for me. enter image description here
I've checked that all conditions are proper, i already installed WP graphql and WPGatsenter image description hereby plugin
CodePudding user response:
I have tried all solution found online
Your schema object is not properly set. You should do something like:
{
resolve: `gatsby-source-wordpress`,
options: {
url: process.env.WPGRAPHQL_URL,
schema: {
timeout: 1000000,
perPage: 10,
requestConcurrency: 5,
},
},
}
schema is a property from options, as you can see in the docs. I'm not sure if this will fix your issue since have not share many details but let me know if this was helpful.