I'm using gatsby-source-wordpress-experimental v7.0.0 and have been able to successfully pull down pages from our Wordpress server, initially I'd set the limit to 35 or lower but now when I increase this amount, zero pages are fetched.
There's no error message, just 0 Pages etc fetched and queryable. I've currently got the requestConcurrency set to 15:
schema: {
requestConcurrency: 15,
},
but no luck even if I incrementally lower it down to 1.
If we change the Pages modified date, then a different 35 is fetched as expected. 1000s of Comments and other nodes are pulled down. I've deleted the .wordpress-cache, gatsby clean'd before each run. I've deleted the limit option entirely, still the same.
What could be causing this? I can't find any WPGraphQL settings which might be the problem either.
Current plugin settings:
{
resolve: `gatsby-source-wordpress-experimental`,
options: {
url: process.env.WPGRAPHQL_URL,
develop: {
hardCacheMediaFiles: true,
hardCacheData: true,
nodeUpdateInterval: 100_000_000, // set high here as we don't rely on changes to the data in development
},
schema: {
requestConcurrency: 15,
},
type: {
Page: {
limit:
process.env.NODE_ENV === `development`
? 100
: process.env.WP_PAGE_LIMIT,
},
},
},
},
What additional info is required to replicate/diagnose? Thanks for any help in advance!
I'm using
gatsby-source-wordpress-experimental v7.0.0
and have been able to successfully pull down pages from our Wordpress server, initially I'd set the limit to 35 or lower but now when I increase this amount, zero pages are fetched.There's no error message, just 0 Pages etc fetched and queryable. I've currently got the requestConcurrency set to 15:
but no luck even if I incrementally lower it down to 1.
If we change the Pages modified date, then a different 35 is fetched as expected. 1000s of Comments and other nodes are pulled down. I've deleted the .wordpress-cache, gatsby clean'd before each run. I've deleted the limit option entirely, still the same.
What could be causing this? I can't find any WPGraphQL settings which might be the problem either.
Current plugin settings:
What additional info is required to replicate/diagnose? Thanks for any help in advance!