Skip to content

Commit 780edf2

Browse files
committed
test
1 parent 647a796 commit 780edf2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,9 @@ const readGraphQLOperationsSourceFiles = (netlifyGraphConfig) => {
359359
const operationFiles = []
360360

361361
const filenames = fs.readdirSync(operationsPath)
362+
363+
console.log("operationsPath", operationsPath)
364+
console.log("filenames", filenames)
362365
filenames.forEach((filename) => {
363366
if (/.*\.(graphql?)/gi.test(filename)) {
364367
const content = fs.readFileSync(path.resolve(operationsPath, filename), 'utf8')
@@ -389,6 +392,8 @@ const readGraphQLOperationsSourceFiles = (netlifyGraphConfig) => {
389392

390393
const source = print(parsedDoc)
391394

395+
console.log("GraphQL source", source)
396+
392397
return source
393398
}
394399

0 commit comments

Comments
 (0)