We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commit 6d99f92 introduced a change where glob was switched to globby in file-scanner.ts. Because globby skips folders with symbols in it's name, scanning for gql fails when it is located inside of files containing brackets such as src/pages/[category]/[product].tsx which are used in nearly all Next.js apps for routing.
glob
globby
gql
src/pages/[category]/[product].tsx
Related issue: dotansimha/graphql-code-generator#3058
The text was updated successfully, but these errors were encountered:
It is related to document loader in core not file-scanner. But you're right, this is a bug. We're currently investigating it.
file-scanner
Sorry, something went wrong.
Add failing test for #370
b149b57
Merge branch 'master' into reproduction-#370
d09e0de
Support brackets in file name (#388)
b89c4ad
* Add failing test for #370 * Do not check if it is glob for isValidPath
Fixed in v0.8.1!
No branches or pull requests
Commit 6d99f92 introduced a change where
glob
was switched toglobby
in file-scanner.ts. Because globby skips folders with symbols in it's name, scanning forgql
fails when it is located inside of files containing brackets such assrc/pages/[category]/[product].tsx
which are used in nearly all Next.js apps for routing.Related issue: dotansimha/graphql-code-generator#3058
The text was updated successfully, but these errors were encountered: