Did something change with gatsby-source-wordpress 3.11.0? I know it is super outdated (I am in process of rebuilding my site with latest Gatsby and gatsby-source-wordpress) but recently it stopped pulling in wordpress posts. It still pulls in categories and media. But no more posts.
I have not changed any of my packages. Just went to run app locally and saw that posts were no longer pulling in via this plugin. Has anyone else seen this?
here is what it shows when pulling data:
success createSchemaCustomization - 0.005s
ā wordpress__wp_media fetched : 373
ā wordpress__CATEGORY fetched : 70
ā wordpress__CATEGORY fetched : 30
Here is what my gatsby-config looks like for this plugin:
{
resolve: 'gatsby-source-wordpress',
options: {
baseUrl: 'mindsetadminportal.wordpress.com',
protocol: 'https',
hostingWPCOM: true,
useACF: false,
auth: {
wpcom_app_clientSecret: process.env.WORDPRESS_CLIENT_SECRET,
wpcom_app_clientId: process.env.WORDPRESS_CLIENT_ID,
wpcom_user: process.env.WORDPRESS_USER,
wpcom_pass: process.env.WORDPRESS_PW,
},
verboseOutput: false,
perPage: 100,
concurrentRequests: 10,
includedRoutes: ['**/posts', '**/categories', '**/media'],
},
},
Again nothing has changed on my end. It has been working for years. I have not changed any thing. Any ideas?