We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 647a796 commit 780edf2Copy full SHA for 780edf2
src/index.js
@@ -359,6 +359,9 @@ const readGraphQLOperationsSourceFiles = (netlifyGraphConfig) => {
359
const operationFiles = []
360
361
const filenames = fs.readdirSync(operationsPath)
362
+
363
+ console.log("operationsPath", operationsPath)
364
+ console.log("filenames", filenames)
365
filenames.forEach((filename) => {
366
if (/.*\.(graphql?)/gi.test(filename)) {
367
const content = fs.readFileSync(path.resolve(operationsPath, filename), 'utf8')
@@ -389,6 +392,8 @@ const readGraphQLOperationsSourceFiles = (netlifyGraphConfig) => {
389
392
390
393
const source = print(parsedDoc)
391
394
395
+ console.log("GraphQL source", source)
396
397
return source
398
}
399
0 commit comments