Open vepanimas opened 1 year ago
@arm1n hey, could you please try a new plugin build with the fix? Does it fix the problem? Please, note that Gatsby expects you to create a graphql.config.js
in the root of the Gatsby project, it's the same folder that contains the .cache
dir. [docs]
Hey @vepanimas thanks for providing a fix for this, I can confirm that it's working with the 4.0.2
and adding a graphql.config.js
in the root of the project.
This is not fixed in the released 4.0.2.
EDIT: I also installed from the zip here and it didn't work.
It's not working when the folder is excluded... it shouldn't be a surprise that an auto generated file that only works with a specific plugin might be excluded.
It's not working when the folder is excluded... it shouldn't be a surprise that an auto generated file that only works with a specific plugin might be excluded.
@robclancy Why do you think it should be excluded?
It's a cache and tmp folder...
@robclancy Yep, it's correct, though, why do you need to exclude it? You usually exclude a folder if you don't want the files inside of it to be indexed and to appear in completion, resolve, navigation, etc. Nevertheless, we do have an issue related to that, but it's not yet clear when it will be implemented.
From the IntelliJ IDEA docs:
Files in excluded folders are ignored by code completion, navigation and inspection. That is why when you exclude a folder that you don't need at the moment, you can increase the IDE performance. Normally, compilation output folders are marked as excluded.
Apart from excluding the entire folders, you can also exclude specific files.
To sum things up, generated != excluded.
What are you talking about? A tmp and cache folder is always excluded. A tmp folder is used for generated files. This issue is not resolved because if you exclude the folder that you should be excluding, the entire reason for the exclude feature to exist, then gatsby graphql config does not work.
What are you talking about?
Look, when you want a file to be excluded from indexing, you mark it or the whole folder as excluded. That's what is written in the docs I provided. For some technologies, e.g. node.js and its node_modules, we have some workarounds, that allow us to use excluded files for completion and resolve, but usually, when you exclude something, it's completely ignored by the IDE.
The easiest way for now to bypass that and leave the .cache
folder excluded is to un-exclude a specific directory you need, for Gatsby it is .cache/typegen
.
Nothing you have said has contradicted anything I have said. I have no idea why you are saying these things.
I was wondering why it doesn't work, and it appears that it's because of a hidden directory (#673). I managed to get it working with a workaround:
.cache/typegen/schema.graphql
in root foldergraphql.config.json
from .cache/typegen
to root folder. Config is very simple, and copypasting it is not a big deal.schema
field in config to schema.graphql
And voila, webstorm recognizes my queries now.
If you don't want to commit symlinks, link can be renamed like schema.local.graphql
and added to gitignore.
Schema is not discovered for Gatsby projects when
graphqlTypegen: true
is enabled ingatsby-config.js
.Reported here https://github.com/JetBrains/js-graphql-intellij-plugin/issues/673#issuecomment-1674947544.