Skip to content

Commit

Permalink
fix(gatsby-source-wordpress): restore PQR support (#33590)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerBarnes committed Oct 19, 2021
1 parent 9eef270 commit 6cc964a
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ import { buildNodeQueries } from "./build-queries-from-introspection/build-node-
import { cacheFetchedTypes } from "./cache-fetched-types"
import { writeQueriesToDisk } from "./write-queries-to-disk"

/**
* This fn is called during schema customization.
* It pulls in the remote WPGraphQL schema, caches it,
* then builds queries and stores a transformed object
* later used in schema customization.
*
* This fn must run in all PQR workers.
*/
const ingestRemoteSchema = async (helpers, pluginOptions) => {
// don't ingest schema while in worker - use cache instead
if (process.env.GATSBY_WORKER_POOL_WORKER) {
return
}

if (process.env.NODE_ENV === `development`) {
// running this code block in production is problematic for PQR
// since this fn will run once for each worker and we need the result in each
Expand Down

0 comments on commit 6cc964a

Please sign in to comment.